/*
Theme Name: Your Theme Name
Description: A clean and simple WordPress theme for blogs and websites.
Author: Your Name
Author URI: https://yourwebsite.com
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: textdomain
Domain Path: /languages
Tags: blog, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* ==========================================================================
   Reset and Base Styles
   ========================================================================== */

#primary {
    max-width: 1400px;
    margin: 0 auto;
}


/* Basic CSS cho comments.php */
.comments-area {
    margin-top: 2rem;
    padding: 1rem 0;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 5px;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author img {
    margin-right: 0.5rem;
    border-radius: 50%;
}

.comment-meta {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.comment-content {
    margin: 0.5rem 0;
}

.comment-awaiting-moderation {
    color: #d63638;
    font-style: italic;
}

.reply {
    text-align: right;
}

.reply a {
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    background: #f0f0f0;
    border-radius: 3px;
    font-size: 0.875rem;
}

.reply a:hover {
    background: #ddd;
}

.children {
    margin-left: 2rem;
    border-left: 2px solid #eee;
    padding-left: 1rem;
}

.no-comments {
    font-style: italic;
    color: #666;
    text-align: center;
    padding: 1rem;
}

/* Comment form styling */
.comment-form {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
}

.comment-form textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    margin-top: 1rem;
}

.submit {
    background: #0073aa;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.submit:hover {
    background: #005a87;
}

/* Navigation */
.comment-navigation {
    margin: 1rem 0;
    text-align: center;
}

.comment-navigation a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: #f0f0f0;
    text-decoration: none;
    border-radius: 3px;
}

.comment-navigation a:hover {
    background: #ddd;
}