/* Comment section custom styling */

.comments-title {
    color: #ffffff;
}

.comment {
    list-style: none;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.comment-avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.comment-content {
    margin-left: 60px;
    position: relative;
}

.comment-meta {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 600;
    color: #fff;
}

.comment-text {
    font-size: 1rem;
    color: #ddd;
}

.comment-reply a {
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;

    background-color: #364151;
    border-radius: 10px;
}
.comment-reply a:hover {
    background-color: #0067ff;
    text-decoration: underline;
}

.comment-form-container {
    background: #0b0f1a;
    padding: 2rem;
    border-radius: 12px;
}

.comment-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-form .form-row-full {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="tel"],
.comment-form input[type="file"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    background-color: #2c2f3a;
    color: #ffffff;
    font-size: 1rem;
}

.comment-form input[type="file"] {
    padding: 0.5rem;
}

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

.comment-form .submit-button {
    width: 100%;
    padding: 1rem;
    background: #007bff;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s;
}

.comment-form .submit-button:hover {
    background: #0056b3;
}

.comment-notes {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.comment-form input[type="tel"],
.comment-form input[type="file"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 12px; /* <-- ROUNDED */
    background-color: #2c2f3f; /* dark background like your screenshot */
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

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

.comment-reply-title {
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: #ccc;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00bfa6; /* Greenish accent color */
}

.comment-form .comment-form-cookies-consent label {
    color: #ffffff !important;
}
