.vermont-school-reports { 
    font-family: 'Lato', sans-serif; 
}

.vermont-school-reports h2{
text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;

}
.school-section { 
    margin-bottom: 30px; 
}

.school-name { 
	    font-family: 'Lato', sans-serif; 
    color: #2c3e50; 
    border-bottom: 2px solid #3498db; 
    padding-bottom: 5px; 
}

.reports-list { 
    margin-left: 20px; 
}

.report-item { 
    margin: 10px 0; 
}

.report-header { 
    background: #ecf0f1; 
    padding: 10px; 
    cursor: pointer; 
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-header:hover { 
    background: #d5dbdb; 
}

.report-title { 
    font-weight: bold; 
}

.report-toggle { 
    font-size: 18px; 
    font-weight: bold; 
}

.report-content { 
    padding: 15px; 
    background: #f8f9fa; 
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.report-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 10px; 
}

.report-table th, .report-table td { 
    border: 1px solid #ddd; 
    padding: 8px; 
    text-align: left; 
}

.report-table th { 
    background-color: #f2f2f2; 
}

.loading { 
    text-align: center; 
    padding: 20px; 
    color: #666; 
}

/* Snapshot container styles */
.snapshot-container {
    margin-bottom: 20px;
}

.snapshot-header {
    background: #2c3e50 !important;
    color: white !important;
}

.snapshot-header:hover {
    background: #2c3e50 !important;
}

.snapshot-content {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

/* Clickable domain field styles */
.clickable-domain {
    cursor: pointer;
    color: #2c3e50;
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease;
}

.clickable-domain:hover {
    color: #2c3e50;
    background-color: #ecf0f1;
    transform: scale(1.05);
}

.domain-field {
    position: relative;
}

.domain-field::after {
    content: " →";
    opacity: 0;
    transition: opacity 0.3s ease;
}

.domain-field:hover::after {
    opacity: 1;
}

/* Back to snapshot button styles */
.back-to-snapshot {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 15px;
    transition: all 0.3s ease;
    float: right;
}

.back-to-snapshot:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

.back-to-snapshot:active {
    transform: translateY(0);
}

/* Ensure header layout works with back button */
.snapshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.snapshot-header .report-title {
    flex-grow: 1;
}

/* Change field icon styles */
.change-field {
    text-align: center;
    font-size: 1.2rem;
}

.change-icon {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.change-icon:hover {
    transform: scale(1.2);
    cursor: help;
}

/* Specific icon styling */
.change-icon.excelling {
    background-color: #d4edda;
    color: #155724;
}

.change-icon.improving {
    background-color: #cce5ff;
    color: #004085;
}

.change-icon.not-improving {
    background-color: #fff3cd;
    color: #856404;
}

.change-icon.declining {
    background-color: #f8d7da;
    color: #721c24;
}

.change-icon.suppressed {
    background-color: #e2e3e5;
    color: #383d41;
}

.change-icon.empty {
    background-color: #f8f9fa;
    color: #6c757d;
}

.change-icon.unknown {
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Report legend styles */
.report-legend {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.legend-section h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #2c3e50;
}

.legend-item .change-icon {
    font-size: 1rem;
    padding: 2px 6px;
}

.data-source {
    border-top: 1px solid #dee2e6;
    padding-top: 10px;
    text-align: center;
}

.data-source small {
    color: #6c757d;
    font-size: 0.8rem;
}

.data-source a {
    color: #3498db;
    text-decoration: none;
}

.data-source a:hover {
    text-decoration: underline;
} 