* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f3f4f6;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.header {
    margin-bottom: 40px;
}

.header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.header p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #111827;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.stat-card > div {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 16px;
}

.stat-card strong {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-top: 8px;
}

.stat-card small {
    margin-top: 8px;
    font-size: 12px;
    color: #6b7280;
    display: block;
}

/* Centers Grid */
.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.center-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.center-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.center-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.center-card .center-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.center-card .status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.center-card .center-location {
    font-size: 14px;
    color: #6b7280;
    margin: 8px 0;
}

.center-card .center-occupancy {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    display: block;
    margin-top: 8px;
}

/* Progress Bar */
.bar {
    background: #e5e7eb;
    height: 12px;
    border-radius: 6px;
    margin: 16px 0;
    overflow: hidden;
    position: relative;
}

.fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.6s ease;
    position: relative;
}

.fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
}

.center-card small {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    display: block;
    margin-top: 8px;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer span {
    font-weight: 600;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .header h1 {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-card strong {
        font-size: 28px;
    }

    .centers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}