:root {
    --primary-teal: #2D5A56;
    --text-main: #333;
    --text-light: #777;
    --border-color: #e0e0e0;
}

/*body {*/
/*    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
/*    background-color: #f5f5f5;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    padding-top: 50px;*/
/*}*/
.booking-bar input {
    border: none !important;
    padding: 0 !important;
    width: 80%;
}

/* Main Container */
.booking-bar {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 1150px;
    /* Increased width slightly to accommodate extra field */
    max-width: 1100px;
    flex-wrap: wrap;
    border: solid 1px #f1ecec;
}

/* Section Styling */
.input-group {
    display: flex;
    flex-direction: column;
    padding: 5px 15px;
    /* Adjusted padding */
    flex: 1;
    min-width: 120px;
    border-right: 1px solid var(--border-color);
}

.input-group:last-of-type {
    border-right: none;
}

.label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Removes default calendar icon in some browsers to keep it clean */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.input-wrapper {
    position: relative;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    position: relative;
}

.input-wrapper svg {
    color: var(--primary-teal);
    font-size: 16px;
    width: 16px;
    height: 16px;
}

input,
select {
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-light);
    font-size: 14px;
    width: 100%;
    cursor: pointer;
}

/* Button Styling */
.btn-check {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 10px;
    white-space: nowrap;
}

.btn-check:hover {
    background-color: #1e3d3a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .booking-bar {
        border-radius: 20px;
        padding: 20px;
        width: 100%;
        max-width: 368px;
    }

    .input-group {
        min-width: 45%;
        border-right: none;
        margin-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .input-group {
        min-width: 100%;
        border-bottom: 1px solid #ddd;
        padding: 15px;
    }

    .btn-check {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
}