/* Score Charts Page Styles */

/* General Styles */
.chart-card {
    margin-bottom: 2rem;
}

.card-header {
    font-weight: 600;
}

/* Filter Controls */
.filter-options {
    margin-bottom: 2rem;
}

.filter-options .card {
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.table th, 
.table td {
    text-align: center;
}

.table thead th {
    vertical-align: middle;
    font-weight: 600;
}

.table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Download Section */
.download-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.download-section h3 {
    color: #343a40;
}

/* Additional Resources */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.accordion-item {
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.accordion-button {
    padding: 1rem;
    font-size: 1.05rem;
    color: #343a40;
    background-color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.accordion-body {
    padding: 1.25rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-options .row {
        flex-direction: column;
    }
    
    .chart-card .card-header h3 {
        font-size: 1rem;
    }
    
    .table th, 
    .table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}

/* Button Styles */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

/* Print Styles */
@media print {
    .navbar, .footer, .accordion-button {
        display: none;
    }
    
    .table {
        border: 1px solid #dee2e6;
    }
    
    .table th,
    .table td {
        border: 1px solid #dee2e6;
    }
} 