* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

/* Top navigation */
header {
    background-color: #111827;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
}

.logo {
    font-size: 26px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    color: #38bdf8;
}

/* Main hero section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 55px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.hero button {
    background-color: #0284c7;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

.hero button:hover {
    background-color: #0369a1;
}

.booking-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
}

.booking-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form label {
    font-weight: bold;
    font-size: 16px;
}

.booking-form input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.booking-row {
    display: flex;
    gap: 20px;
}

.booking-row div {
    flex: 1;
}

.booking-form button {
    background-color: #0284c7;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

.booking-form button:hover {
    background-color: #0369a1;
}
.fare-result {
    margin-top: 25px;
    padding: 25px;
    background-color: #f5f7fa;
    border-radius: 12px;
    text-align: center;
}

.fare-result h3 {
    margin-top: 0;
    font-size: 26px;
}

.fare-result p {
    font-size: 18px;
    margin: 10px 0;
}

.fare-result strong {
    font-size: 24px;
}
#continue-booking {
    margin-top: 15px;
    padding: 14px 30px;
    background-color: #0b8fc9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

#continue-booking:hover {
    background-color: #0369a1;
}
.booking-summary {
    margin-top: 30px;
    padding: 30px;
    background-color: #f5f7fa;
    border-radius: 12px;
}

.booking-summary h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
}

.booking-summary p {
    margin: 10px 0;
    font-size: 16px;
}

.booking-summary hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}

#final-confirm-booking {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background-color: #0b8fc9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

#final-confirm-booking:hover {
    background-color: #0369a1;
}

.booking-confirmation {
    margin-top: 30px;
    padding: 30px;
    background-color: #f5f7fa;
    border-radius: 12px;
}

.booking-confirmation h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.booking-confirmation h3 {
    font-size: 26px;
    margin: 10px 0 20px;
}

.booking-confirmation p {
    font-size: 17px;
    margin: 8px 0;
}
#new-booking {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background-color: #0b8fc9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

#new-booking:hover {
    background-color: #0369a1;
}
.remove-stop {
    display: inline-block !important;
    width: auto !important;
    margin: 6px 0 18px 0 !important;
    padding: 4px 8px !important;

    background: transparent !important;
    color: #555 !important;

    border: none !important;
    border-radius: 0 !important;

    font-size: 13px !important;
    cursor: pointer;
    text-decoration: underline;
}

.remove-stop:hover {
    background: transparent !important;
    color: #000 !important;
}
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.status-new {
    background-color: #fff3cd;
    color: #856404;
}

.status-accepted {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-completed {
    background-color: #d4edda;
    color: #155724;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}
.accept-booking,
.complete-booking,
.cancel-booking {
    width: auto !important;
    padding: 9px 14px !important;
    margin: 10px 8px 0 0 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    cursor: pointer;
}

.accept-booking {
    background-color: #198754 !important;
    color: white !important;
    border: none !important;
}

.complete-booking {
    background-color: #0d6efd !important;
    color: white !important;
    border: none !important;
}

.cancel-booking {
    background-color: #dc3545 !important;
    color: white !important;
    border: none !important;
}

.customer-details {
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}


.customer-details h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
}

.customer-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.customer-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.customer-field label {
    font-weight: bold;
}

.customer-field input,
.customer-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
}

.customer-field textarea {
    min-height: 90px;
    resize: vertical;
}

.customer-field.full-width {
    grid-column: 1 / -1;
}



@media (max-width: 650px) {
    .customer-details-grid {
        grid-template-columns: 1fr;
    }

    .customer-field.full-width {
        grid-column: auto;
    }

    #confirm-booking {
        width: 100%;
    }
}