.calculator-header {
    margin-bottom: 2rem;
}

.calculator-title {
    color: #E02B20;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.calculator-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.section-title {
    color: #E02B20;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

/* Organization Cards and SFEC Cards */
.org-card, .sfec-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
}

.org-card:hover, .sfec-card:hover {
    border-color: #E02B20;
    box-shadow: 0 4px 8px rgba(224, 43, 32, 0.1);
}

.org-card.selected, .sfec-card.selected {
    border-color: #E02B20;
    background-color: #fef5f5;
}

/* Participant Sections */
.participant-section .card {
    transition: all 0.3s ease;
}

.participant-section .card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Course Info Card */
.course-info .card {
    background-color: #fef5f5;
    border-left: 4px solid #E02B20;
}

/* Cost Display */
.cost-display {
    text-align: center;
}

.cost-breakdown {
    font-size: 0.95rem;
}

.final-summary {
    font-size: 1.05rem;
}

/* General Utilities */
.cursor-pointer {
    cursor: pointer;
}

/* Custom Colors */
.text-success {
    color: #28a745 !important;
}

.text-primary {
    color: #E02B20 !important;
}

.bg-primary {
    background-color: #E02B20 !important;
}

.border-primary {
    border-color: #E02B20 !important;
}

.btn-primary {
    background-color: #E02B20;
    border-color: #E02B20;
}

.btn-primary:hover {
    background-color: #c4251c;
    border-color: #c4251c;
}

/* Course Tier Badge */
#course-tier {
    font-size: 0.8rem;
}

/* Loading Indicator */
.loading-courses {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Negative Cost Styling */
.negative-cost {
    color: #dc3545 !important;
    font-weight: bold;
}

/* WSQ Dual Results */
#wsq-dual-results .card {
    min-height: 135px;
}

#wsq-dual-results .final-summary {
    font-size: 0.95rem;
}

/* Additional Color Classes */
.text-info {
    color: #17a2b8 !important;
}

.text-warning {
    color: #856404 !important;
}

.border-info {
    border-color: #17a2b8 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

/* Form Controls */
.form-select:focus,
.form-control:focus {
    border-color: #E02B20;
    box-shadow: 0 0 0 0.2rem rgba(224, 43, 32, 0.25);
}

/* Badge Styling */
.badge {
    font-size: 0.75em;
}

.badge.fs-6 {
    font-size: 0.875rem !important;
}

.hide-hrp {
    display: none !important;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Results Section Styling */
.results-section .card {
    border: 1px solid #dee2e6;
}

.results-section .card-title {
    color: #E02B20;
    font-weight: 600;
}

/* Alert Styling */
.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Input Group Styling */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* SFEC Input Styling */
#sfec-amount-input .input-group-text {
    background-color: #E02B20;
    color: white;
    border-color: #E02B20;
}

#sfec-amount-input .form-control {
    border-left: none;
}

#sfec-amount-input .form-control:focus {
    border-color: #E02B20;
    box-shadow: none;
}

/* SFEC Benefit Display */
#sfec-benefit {
    background-color: #f8f9fa;
    padding: 0.75rem;
    margin-top: 1em;
    border-left: 4px solid #E02B20;
}

/* Spinner Animation */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Button Styling */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Additional Supports Section Styling */
#additional-supports .card-title {
    color: #E02B20;
    font-weight: 600;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* SFEC Question Styling */
#sfec-question {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #E02B20;
}

#sfec-question .form-label {
    color: #E02B20;
    font-weight: 600;
}

/* Input Group Focus States */
.input-group:focus-within .input-group-text {
    border-color: #E02B20;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subsidy-calculator-container {
        padding: 15px;
    }
    
    .row > div {
        margin-bottom: 1rem;
    }
    
    #wsq-dual-results .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .calculator-title {
        font-size: 1.5rem;
    }
    
    .calculator-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .final-summary {
        font-size: 1rem;
    }
    
    #wsq-dual-results .final-summary {
        font-size: 0.9rem;
    }

    /* SFEC responsive adjustments */
    #sfec-benefit span:first-child {
        font-size: 0.9rem;
    }
    
    .org-card .card-body,
    .sfec-card .card-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .subsidy-calculator-container {
        padding: 10px;
    }
    
    .org-card .card-body,
    .sfec-card .card-body {
        padding: 0.75rem;
    }
    
    .participant-section .card-body {
        padding: 1rem;
    }
    
    .cost-display {
        margin-top: 1rem;
        text-align: left;
    }
    
    .btn-lg {
        width: 100%;
        margin-top: 1rem;
    }

    /* SFEC mobile adjustments */
    #sfec-question {
        padding: 0.75rem;
    }
    
    #sfec-amount-input .input-group {
        margin-bottom: 0.5rem;
    }
    
    #sfec-benefit span:first-child {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

.icon-circle {
    width: 30px;
    height: 30px;
    background: #E02B20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.icon-circle-warning {
    width: 30px;
    height: 30px;
    background: #856404;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.steps-list {
    padding-left: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.step-number {
    background: #E02B20;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.tip-section {
    border-top: 2px solid rgba(224, 43, 32, 0.2);
    padding-top: 15px;
}

.tip-box {
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #E02B20;
    display: flex;
    align-items: center;
}

.notes-disclaimer {
    background: linear-gradient(135deg, #fff3cd 0%, #fef3e2 100%);
    border: 1px solid #ffeaa7;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.disclaimer-content {
    background: white;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #856404;
    line-height: 1.6;
    font-size: 0.95em;
}

.alert {
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 1px solid #bee5eb;
}

@media (max-width: 768px) {
    .icon-circle, .icon-circle-warning {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .steps-list {
        padding-left: 10px;
    }
    
    .step-item {
        gap: 8px;
        margin-bottom: 10px;
    }
}