/*
Theme Name: Kamimanga Yume Theme
Theme URI: https://example.com/kamimangayume-theme
Author: Your Name/Company Name
Author URI: https://example.com
Description: A custom WordPress theme for manga websites.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kamimangayume
Tags: custom-post-type, responsive, translation-ready, custom-menu, featured-images

This theme is designed for manga reading websites, providing custom post types for manga and chapters,
and a dedicated reader page.
*/

/* Temel CSS stilleri buraya gelir */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Diğer genel stiller, başlıklar, paragraflar, linkler vb. */
h1, h2, h3, h4, h5, h6 {
    color: #222;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* WordPress sınıfları için temel stiller */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* Menü stilleri */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* veya block */
    justify-content: center;
}

.main-navigation li {
    margin: 0 15px;
}

.main-navigation a {
    display: block;
    padding: 10px 0;
    color: #fff;
    font-weight: bold;
}

/* Header ve Footer için temel stiller */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* --- Yorum Kapsayıcısı ve Listesi Stilleri --- */
.comment {
    margin-bottom: 25px;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 20px;
    background-color: #fcfcfc;
}

/* Yanıtlanan yorumlar için girinti */
.children {
    margin-left: 40px;
    padding-left: 0;
}

/* Yorumun ana gövdesi */
.custom-comment-body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* --- Yorum Yazar ve Meta Bilgileri --- */
.custom-comment-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author-avatar {
    margin-right: 15px;
}

.comment-author-avatar img {
    border-radius: 50%;
}

.comment-info {
    display: flex;
    flex-direction: column;
}

.comment-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.comment-author-name a {
    text-decoration: none;
    color: #333;
}

.comment-metadata {
    font-size: 0.85rem;
    color: #888;
}

.comment-metadata a {
    text-decoration: none;
    color: #888;
}

/* --- Yorum İçeriği ve Butonlar --- */
.comment-content-main {
    line-height: 1.6;
    color: #555;
    margin-top: 10px;
}

.comment-content-main p {
    margin: 0 0 10px 0;
}

.reply-link a {
    display: inline-block;
    background-color: #28a745; /* Yeşil renk */
    color: #fff;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.reply-link a:hover {
    background-color: #218838;
}

.edit-link a {
    color: #6c757d;
    text-decoration: none;
    margin-left: 10px;
}

