body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f2f6fa;
}


.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px); /* exclude header */
    padding: 30px 0;
    flex-direction: column;
}


.container {
    background-color: white;
    padding: 40px;
    border: 3px solid #002b5c; /* thicker blue border */
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.6);
    width: 420px;
    text-align: center;
}

h1 {
    color: #002b5c;
    margin-bottom: 20px;
}

.state-buttons {
    display: flex;
    justify-content: space-between; /* spread out evenly */
    margin-bottom: 20px;
    gap: 20px; /* spacing between buttons */
}

.state-buttons button {
    flex: 1; /* Make buttons take equal width */
    padding: 12px 0; /* vertical padding only */
    background-color: #004080;
    color: white;
    border: 1px solid #003366;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    min-width: 0; /* prevent button overflow */
}

.state-buttons button:hover {
    background-color: #002c5c;
}

.zone-panel {
    margin-top: 20px;
    text-align: left;
}

.zone-panel label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

select {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.school-select {
    margin-top: 10px;
}

.button-wrapper {
    margin-top: 30px;
    text-align: center;
}

.confirm-button {
    padding: 12px 30px;
    background-color: #006400;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
    min-width: 160px; /* fixed width for confirm button */
}

.confirm-button:hover {
    background-color: #004d00;
}

.hidden {
    display: none;
}

.top-bar {
    background-color: #002b5c; /* dark blue like MBMB */
    padding: 20px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,1);
  
}

.main-header {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px); /* adjust to exclude header height */
    padding: 30px 0;
    flex-direction: column;
}

