.booking-alert-container {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    z-index: 1;
    flex-direction: column;
    align-items: flex-end;
    padding: 2rem 2rem 0;
    transition: transform 0.6s;
    transform: translateY(-100%);
}

.booking-alert-container-active {
    transform: translateY(0);
}

.booking-alert {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(97, 26, 21);
    border: 1px solid #f44336;
    padding: 6px 16px;
    background-color: rgb(253, 236, 234);
    margin-bottom: 15px;
}

.booking-alert-message {
    padding: 8px 0;
}

.booking-alert-closebtn {
    margin-left: 15px;
    color: rgb(97, 26, 21);
    font-size: 26px;
    cursor: pointer;
}

.booking-alert-closebtn:hover {
    color: black;
}