/* Custom styles for SterileVision Competency Checker */

/* Override minimal styles only when necessary */
.navbar-brand {
    font-weight: 600;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.125);
}

.card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.125);
}

/* Assessment form styling */
.form-check {
    padding-left: 1.5em;
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Badge styling for better visibility */
.badge {
    font-size: 0.75em;
    padding: 0.375em 0.75em;
}

/* Table hover effects */
.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

/* Loading states */
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .btn-sm {
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }
}

/* Assessment question spacing */
.assessment-question {
    border-left: 3px solid var(--bs-primary);
    padding-left: 1rem;
}

/* Score display */
.score-display {
    font-size: 2rem;
    font-weight: 700;
}

/* Status indicators */
.status-passed {
    color: var(--bs-success) !important;
}

.status-failed {
    color: var(--bs-danger) !important;
}

.status-pending {
    color: var(--bs-warning) !important;
}

/* Print styles for assessments */
@media print {
    .navbar, .btn, .card-header .badge {
        display: none !important;
    }
    
    .card {
        border: none !important;
        box-shadow: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}
