/* Status-specific left borders */
.status-no { border-left: 4px solid #dc3545; }
.status-yes { border-left: 4px solid #198754; }
.status-low { border-left: 4px solid #fd7e14; }

/* Comment card styles */
.comment-card {
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}
.comment-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Detail section styling */
.detail-section {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    padding: 0.5rem;
    border-left: 3px solid #ffc107;
    font-size: 0.9rem;
}

/* Status indicator for main card */
.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

/* Mobile optimizations */
@media (max-width: 576px) {
    .comment-card .badge {
        font-size: 0.75rem;
    }
    .detail-section {
        font-size: 0.85rem;
    }
}

/* New comment highlight */
.comment-new {
    border-color: #0d6efd;
    background-color: #f0f7ff;
}
