/* ===== STYLING UTAMA KOMENTAR ===== */
.comments-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comments-section h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

/* ===== NOTIFIKASI ===== */
.comment-notice {
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.comment-success {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.comment-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== FORM KOMENTAR ===== */
.custom-comment-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.custom-comment-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    transition: border 0.3s ease;
}

.custom-comment-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.submit-comment-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-comment-btn:hover {
    background: #2980b9;
}

/* ===== TAMPILAN BELUM LOGIN ===== */
.comment-login-required {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.comment-login-required a {
    color: #3498db;
    font-weight: 600;
}

/* ===== KOMENTAR ===== */
.custom-comment {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 3px solid #3498db;
    margin-bottom: 15px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

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

.comment-author-name {
    font-weight: 600;
    color: #2c3e50;
}

.comment-date {
    color: #7f8c8d;
    font-size: 0.9em;
}

.comment-content {
    color: #34495e;
    line-height: 1.5;
}

/* ===== BELUM ADA KOMENTAR ===== */
.no-comments {
    text-align: center;
    padding: 30px;
    color: #7f8c8d;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .comments-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .submit-comment-btn {
        width: 100%;
    }
}