.bookatme-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.bookatme-box {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255);
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    gap: 5px;
    max-width: 100%;
    box-sizing: border-box;
}

.bookatme-box h5 {
    margin: 0 !important;
    font-size: 20px;
}

.bookatme-bar {
    display: flex;
    flex-direction: row;
    gap: 10px;
    box-sizing: border-box;
}

.bookatme-bar h3 {
    margin: 0 10px 0 0;
    font-size: 16px;
    font-weight: bold;
}

.bookatme-bar input,
.bookatme-bar select {
    padding: 8px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.bookatme-bar button {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.bookatme-open-button {
    display: none;
    color: '#FFF';
    text-decoration: none;
}

.mui-form-control {
    position: relative;
    font-family: sans-serif;
    flex:1
}

.mui-form-control input, .mui-form-control select {
    width: 100%;
    padding: 12px 8px 8px 8px;
    font-size: 16px;
    border: 1px solid #ccc !important;
    border-radius: 4px;
    outline: none;
}

.mui-form-control label {
    position: absolute;
    top: 12px;
    left: 8px;
    color: #999;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s ease all;
    background: white;
    padding: 0 4px;
}

.mui-form-control input:focus+label,
.mui-form-control select:focus+label,
.mui-form-control input:not(:placeholder-shown)+label,
.mui-form-control select:not(:placeholder-shown)+label {
    top: -8px;
    left: 6px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .bookatme-bar {
        flex-direction: column;
        align-items: center;
    }

    .bookatme-box h5 {
        display: none !important;
    }

    .bookatme-bar button {
        padding: 5px 10px;
        border-radius: 20px;
        border: none;
        color: white;
        cursor: pointer;
        font-weight: bold;
    }

    .bookatme-box {
        padding: 5px;
    }

    .bookatme-bar {
        display: none;
    }

    .bookatme-open-button:hover {
        color: #FFFFFF !important;
    }
    .bookatme-open-button {
        display: block;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        color: #FFFFFF !important;
        padding: 5px 10px;
    }
}