/* Minimalist Comment Section */
.comments-section {
    color: #e0e0e0;
}

.comment-item {
    /* No border for items, just spacing */
}

.comment-avatar {
    width: 40px;
    height: 40px;
    background: #2d2d2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd; /* Bootstrap Primary Blue */
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px solid #333;
}

.comment-author {
    font-weight: 600;
    color: #f0f0f0;
    font-size: 0.95rem;
}

.comment-date {
    font-size: 0.8rem;
    color: #666;
}

.comment-content {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comment-actions .btn-link {
    color: #666;
    transition: color 0.2s;
}

.comment-actions .btn-link:hover {
    color: #0d6efd;
}

/* Form */
.comment-form .form-control {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
}

.comment-form .form-control:focus {
    background: rgba(13, 110, 253, 0.05);
    border-color: #0d6efd;
    box-shadow: none;
}

.comment-form .form-control::placeholder {
    color: #555;
}

.comment-form .btn-primary {
    background-color: #2d2d2d;
    border-color: #333;
    color: #fff;
}

.comment-form .btn-primary:hover {
    background-color: #333;
    border-color: #0d6efd;
    color: #0d6efd;
}
