/**
 * Shared sauna styles
 */

.my-booking {

    cursor: pointer;

    background-color: goldenrod;

    border: 1px solid #000 !important;
}

.sjotorpet-modal {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.45);

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 99999;
}

.sjotorpet-modal.hidden {

    display: none;
}

.sjotorpet-modal-content {

    background: white;

    width: 90%;

    max-width: 420px;

    padding: 24px;

    border-radius: 16px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.25);
}