.statistics-layout {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stats-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-around;
}

.summary-card {
    background: #006297;
    color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
    transition: transform 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
}

.summary-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.summary-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.priority-chart {
    flex: 2;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.chart-header h3 {
    color: #006297;
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.4rem;
}

.chart-container {
    display: flex;
    justify-content: center;
}

.bar-group {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    height: 220px;
}

.bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.bar-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #006297;
    min-height: 1.5rem;
}

.bar-visual {
    width: 45px;
    height: 180px;
    background: #f0f4f8;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #006297 0%, #004d80 100%);
    border-radius: 6px;
    transition: height 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-label {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    font-weight: 500;
}

.chart-container-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.archive-accordion {
    margin-top: 1rem;
    border: 1px solid #d0dce8;
    border-radius: 8px;
    overflow: hidden;
}

.archive-accordion summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: #e8f0f7;
    color: #006297;
    font-weight: 600;
    font-size: 1rem;
    user-select: none;
    transition: background 0.2s ease;
}

.archive-accordion summary::-webkit-details-marker {
    display: none;
}

.archive-accordion summary:hover {
    background: #d6e8f5;
}

.archive-accordion summary .accordion-icon {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.archive-accordion[open] summary .accordion-icon {
    transform: rotate(180deg);
}

.archive-accordion-body {
    padding: 1.5rem;
    background: #f4f4f9;
    border-top: 1px solid #d0dce8;
}

.archive-accordion-body .admission-section {
    margin-top: 0;
}


@media (max-width: 992px) {
    .statistics-layout {
        flex-direction: column;
    }
    
    .stats-summary {
        flex-direction: row;
    }
    
    .summary-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .stats-summary {
        flex-direction: column;
    }
    
    .bar-group {
        gap: 1rem;
        height: 180px;
    }
    
    .bar-visual {
        width: 35px;
        height: 150px;
    }
    
    .summary-number {
        font-size: 2.5rem;
    }
    
    .priority-chart {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bar-group {
        gap: 0.5rem;
    }
    
    .bar-visual {
        width: 25px;
        height: 120px;
    }
    
    .bar-label {
        font-size: 0.7rem;
    }
}