* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    width: 380px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card h1 {
    margin-bottom: 5px;
}

.card h2 {
    margin-top: 25px;
}

.card h3 {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
}

.card p {
    color: #666;
}

input {
    width: 100%;
    padding: 13px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 15px;
}

button {
    width: 100%;
    padding: 13px;
    margin-top: 10px;
    border: none;
    border-radius: 7px;
    background: #111;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #333;
}

a {
    color: #111;
    font-weight: bold;
    text-decoration: none;
}

#message {
    margin-top: 15px;
    font-weight: bold;
}


/* ========================= */
/* REQUEST TYPE BUTTONS */
/* ========================= */

.request-type-buttons {
    display: flex;
    gap: 10px;
}

.request-type-buttons button {
    width: 50%;
}


/* ========================= */
/* VEHICLE OPTIONS */
/* ========================= */

.vehicle-options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin: 15px 0;
}

.vehicle-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 15px;
}

.vehicle-options input[type="radio"] {
    width: auto;
    margin: 0;
}


/* ========================= */
/* LOGOUT BUTTON */
/* ========================= */

.logout-button {
    margin-top: 20px;
}


/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 450px) {

    .card {
        width: 90%;
        padding: 25px;
    }

}
.request-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    text-align: left;
    background: #fafafa;
}

.request-card h3 {
    margin-top: 0;
}

.request-card p {
    margin: 8px 0;
}
/* ==========================================
   REQUEST CARD
   ========================================== */

.request-card {
    border: 1px solid #ddd;

    border-radius: 10px;

    padding: 15px;

    margin-top: 15px;

    text-align: left;

    background: #fafafa;
}

.request-card h3 {
    margin-top: 0;

    margin-bottom: 12px;
}

.request-card p {
    margin: 7px 0;
}

.request-card button {
    margin-top: 12px;
}

/* ==========================================
   LOGOUT BUTTON
   ========================================== */

.logout-button {
    margin-top: 25px;
}
/* ==========================================
   LOCATION DROPDOWNS
   ========================================== */

select {
    width: 100%;
    padding: 13px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 15px;
    background: white;
    cursor: pointer;
}

select:disabled {
    background: #f1f1f1;
    color: #999;
    cursor: not-allowed;
}
/* ==========================================
   DROPDOWN
   ========================================== */

select {
    width: 100%;
    padding: 13px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 15px;
    background: white;
    cursor: pointer;
}

select:disabled {
    background: #f1f1f1;
    color: #999;
    cursor: not-allowed;
}
