/* #boat-booking-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    font-family: Arial, sans-serif;
}

#boat-booking-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

#boat-booking-form input[type="text"],
#boat-booking-form input[type="date"],
#boat-booking-form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}

#boat-booking-form input[type="checkbox"] {
    margin-right: 5px;
}

#boat-booking-form input[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#boat-booking-form input[type="submit"]:hover {
    background: #005f8d;
}

#total_price {
    font-size: 20px;
    font-weight: bold;
    color: #0073aa;
}
.dis-flex{
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.dis-flex input{
    padding: 2px 10px!important;
    width: 20%!important;
}

.step-indicator.active{
    color: red;
}
.flex{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.flex div{
    width: 50%;
} */


/* Wrapper and Form Layout */
.boat-booking-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #f4f9ff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Sidebar Navigation */
.booking-sidebar {
    min-width: 220px;
    background: #fff;
    border: 1px solid #dfe6e9;
    border-radius: 10px;
    padding: 20px;
}

.booking-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-indicator {
    padding: 12px 15px;
    border-left: 5px solid transparent;
    color: #2d3436;
    font-weight: 500;
    cursor: default;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.step-indicator.active {
    background-color: #e0f7fa;
    border-left-color: #00b894;
    color: #0077cc;
    font-weight: bold;
}

/* Form Container */
#boat-booking-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #dfe6e9;
    width: 100%;
}

#boat-booking-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2d3436;
}

#boat-booking-form input[type="text"],
#boat-booking-form input[type="email"],
#boat-booking-form input[type="tel"],
#boat-booking-form input[type="date"],
#boat-booking-form select,
#boat-booking-form input[type="number"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    background: #f9fbfd;
    font-size: 14px;
    color: #2d3436;
    margin-bottom: 10px;
    transition: border 0.2s;
}

#boat-booking-form input:focus,
#boat-booking-form select:focus {
    outline: none;
    border-color: #00b894;
    box-shadow: 0 0 0 2px rgba(0,184,148,0.2);
}

#boat-booking-form button {
    background: #0077cc;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: bold;
    transition: background 0.3s ease;
}

#boat-booking-form button:hover {
    background: #005fa3;
}

/* Step Containers */
.step {
    display: none;
}
.step:first-child {
    display: block;
}

/* Addon Section */
.addons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
    background: #f0f8ff;
    padding: 15px;
    border-radius: 8px;
}

.dis-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.dis-flex input, .dis-flex label{
    margin: 0!important;
}

.dis-flex input {
    width: 25%!important;
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Price Display */
#total_price,
#summary_total,
#payable_now {
    font-size: 20px;
    font-weight: bold;
    color: #ff6b6b;
}

/* Flex layout for start-end time */
.flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.flex > div {
    flex: 1;
}
