


/* Responsive Design */
@media (max-width: 768px) {

    .passenger-container {
        flex-direction: column;
    }
  
 



}





/*Passenger Details*/


/* Progress Bar */
.progress-bars {
    display: flex;
    border-radius: 6px;
    margin: 20px auto;
    justify-content: space-around;
    background: var(--tertiary-color);
    padding: 15px 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.progress-bars .step {
    background: #ff6600;
    color: white;
    font-size: var(--font-size-l);
    padding: 10px 10px;
    width: 180px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

.passenger-container {
    display: flex;
    flex-wrap: wrap;

    margin: 20px auto;
    gap: 20px;
}

/* Passenger & Payment Forms */
.passenger-form,
.payment-form {
    background: white;
    /* padding: 20px; */
    /* width: 50%; */
    /* flex: 1; */
    width: 55%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.passenger-form h2,
.payment-form h2 {

    font-size: var(--font-size-xxl);
    font-weight: bold;
    margin: 10px;
}



/* Terms & Button */
.terms {
    font-size: var(--font-size-default);
    color: #555;
}

.terms a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

.proceedbutton {
    width: 100%;
    padding: 10px;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: var(--font-size-medium);
    margin: 20px auto;
    cursor: pointer;
}

#proceedButton {
    background-color: gray;
    /* Disabled button color */
    cursor: not-allowed;
}

#proceedButton:enabled {
    background-color: #ff6600;
    /* Enabled button color */
    cursor: pointer;
}

#proceedButton:enabled:hover {
    background-color: #ff6600;
    /* Hover effect when enabled */
}

