@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

.booking-sdk-container {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 980px;
    box-sizing: border-box;
}

.booking-sdk-container * {
    box-sizing: border-box;
}

.booking-sdk-form .booking-sdk-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.booking-sdk-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    transition: border-color 0.2s;
    background-color: #fff;
    height: 54px;
}

.booking-sdk-form .form-group:focus-within {
    border-color: #1E8276;
}

.booking-sdk-form .form-group svg {
    margin: 0 12px;
    fill: #888;
    flex-shrink: 0;
}

.booking-sdk-form .form-control {
    width: 100%;
    padding: 14px 16px 14px 0;
    border: none;
    background: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    outline: none;
    height: 100%;
}

.booking-sdk-form .input-icon-padding {
    padding-left: 12px;
}

.booking-sdk-form .form-row {
    display: flex;
    gap: 1px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    height: 54px;
}

.booking-sdk-form .date-field,
.booking-sdk-form .time-field {
    border: none;
    height: 100%;
}

.booking-sdk-form .date-field {
    border-right: 1px solid #dcdcdc;
}

.booking-sdk-form .time-field {
    width: 45%;
}

.booking-sdk-form .submit-button {
    background-color: #1E8276;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    height: 54px;
    transition: background-color 0.2s;
}

.booking-sdk-form .submit-button:hover {
    background-color: #166157;
}

.booking-sdk-container .chosen-container-single .chosen-single {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 0 10px !important;
    font-size: 16px;
    color: #333;
    height: 100% !important;
    display: flex;
    align-items: center;
}

.booking-sdk-container .chosen-container-single .chosen-default {
    color: #888 !important;
}

.booking-sdk-container .chosen-container-single .chosen-single div {
    top: 15px !important;
}

.booking-sdk-container .chosen-container-active .chosen-single {
    border: none !important;
}

@media (min-width: 992px) {
    .booking-sdk-form .booking-sdk-grid {
        grid-template-columns: 2.5fr 2fr 1.5fr;
        align-items: stretch;
    }

    .booking-sdk-form .submit-button-wrapper {
        grid-column: 3;
    }
}
