@font-face {
    font-family: "GT-Pressura-Mono-Regular";
    src: url("/static/lam/font/GT-Pressura-Mono-Regular.woff2") format("woff2"),
        url("/static/lam/font/GT-Pressura-Mono-Regular.woff") format("woff"),
        url("/static/lam/font/GT-Pressura-Mono-Regular.ttf") format("truetype"),
        url("/static/lam/font/GT-Pressura-Mono-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Archivo-Regular";
    src: url("/static/lam/font/Archivo-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

:root {
    --brand-orange: #F07630;
    --grey: #F5F5F5;
    --disabled: #B3B3B3;
    --secondary-font: 'Montserrat', Arial, sans-serif;
}

.iframe-wrapper {
    width: 100%;
    max-width: 950px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.10);
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    border: none;
    display: block;
    object-fit: contain;
}

.custom-dropdown {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 10000;
    min-width: 180px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.dropdown-option {
    padding: 10px 18px;
    cursor: pointer;
    font-size: 1rem;
    color: #222;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.18s, color 0.18s;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover,
.dropdown-option.active {
    background: #f5f5f5;
    color: #000;
}

.calendar-dropdown {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    overflow: hidden;
    font-family: var(--secondary-font);
}

.calendar-dropdown .dateHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 32px;
    line-height: 128%;
    margin: 48px;
    font-family: 'GT-Pressura-Mono-Regular', 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #222;
}

#month-year {
    font-size: 2.2rem;
    font-family: 'GT-Pressura-Mono-Regular', 'Montserrat', Arial, sans-serif;
    color: #222;
    letter-spacing: 0.04em;
    font-weight: 400;
    text-align: center;
    flex: 1;
}

.calendar-dropdown .scroll-btn {
    display: flex;
    background: none;
    font-family: var(--secondary-font);
    border-radius: 7.5px;
    color: var(--disabled);
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

.calendar-dropdown .scroll-btn span {
    display: inline;
}

.calendar-dropdown .separator {
    flex: none;
    width: 1.25px;
    height: inherit;
    background-color: var(--grey);
}

.calendar-dropdown .scrollWrapper {
    width: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
    justify-content: space-between;
}

.calendar-dropdown .dayColumn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    font-size: 20px;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
}

.calendar-dropdown .dayColumn span {
    width: 100%;
    text-align: center;
}

.calendar-dropdown .dayColumn span:first-of-type {
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--disabled);
}

.calendar-dropdown .dayColumn span:last-of-type {
    font-size: 20px;
    line-height: 128%;
}

.calendar-dropdown .timeColumn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
    height: 315px;
    align-content: center;
    font-family: var(--secondary-font);
    font-size: 15px;
    line-height: 128%;
    gap: 10px;
}

.calendar-dropdown .slot-btn,
.calendar-dropdown .timeColumn .time {
    width: min-content;
    background-color: var(--grey);
    padding: 5px 10px;
    border-radius: 7.5px;
    cursor: pointer;
    font-family: var(--secondary-font);
    font-size: 15px;
    margin: 0 auto;
    transition: background 0.2s;
    text-align: center;
}

.calendar-dropdown .slot-btn:hover,
.calendar-dropdown .timeColumn .time:hover,
.calendar-dropdown .slot-btn:focus,
.calendar-dropdown .timeColumn .time:focus,
.calendar-dropdown .slot-btn:active,
.calendar-dropdown .timeColumn .time:active {
    background-color: var(--brand-orange);
    color: #fff;
    outline: none;
}

.calendar-dropdown .no-slots {
    color: var(--disabled);
    text-align: center;
    margin: 6px auto;
}

.calendar-dropdown .loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.calendar-dropdown .loader {
    width: 100px;
    height: 100px;
    border: 10px solid #EEEEEE;
    border-top: 10px solid #F07630;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.calendar-dropdown .reservation_footer {
    display: flex;
    width: 100%;
    gap: 10px;
    border-radius: 6px;
    padding-top: 5px;
    padding-bottom: 5px;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: var(--grey);
}

.calendar-dropdown .asterisk {
    flex: none;
    padding-right: 6px;
}

.calendar-dropdown .asterisk-text {
    flex: 1;
}