.birthdate-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-family: Arial, sans-serif;
}

.birthdate-form label {
    font-weight: bold;
}

.birthdate-form select {
    padding: 5px;
    width: 80%;
    font-size: 16px;
    border-radius: 20px;
    border: 1px solid #e57265;
    width: 120px;
}

.refreshIcon {
    background: white;
    padding: 5px;
    display: inline-block;
}

#cookieBanner.cookie-banner {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background-color: #ebebeb;
    color: #1a1a1a;
    padding: 8px 44px 8px 14px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.15);
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 14px;
    box-sizing: border-box;
    min-height: 54px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s;
}

#cookieBanner.cookie-banner.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

#cookieBanner .cookie-banner__text {
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.35;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1a1a1a;
}

#cookieBanner .cookie-banner__actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    white-space: nowrap;
}

#cookieBanner button {
    border: none;
    padding: 8px 14px;
    text-align: center;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
    line-height: 1.2;
    border-radius: 2px;
}

#cookieBanner #acceptButton,
#cookieBanner #refuseButton,
#cookieBanner #configureButton {
    width: auto;
    min-width: 100px;
    height: 38px;
}

#cookieBanner #acceptButton {
    background-color: #2e7d32;
    color: #fff;
}

#cookieBanner #refuseButton,
#cookieBanner #configureButton {
    border: 2px solid #1b5e20;
    background-color: #fff;
    color: #1b5e20;
}

#cookieBanner .close-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    color: #1a1a1a;
}

@media (max-width: 767px) {
    #cookieBanner.cookie-banner {
        flex-wrap: wrap;
        padding: 10px 36px 10px 10px;
        min-height: 120px;
    }

    #cookieBanner .cookie-banner__text {
        white-space: normal;
        flex: 1 1 100%;
        overflow: visible;
        text-overflow: unset;
        text-align: center;
    }

    #cookieBanner .cookie-banner__actions {
        flex: 1 1 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.guest-alert-modal .modal-dialog {
    max-width: 420px;
}

.guest-alert-modal__content {
    border: none;
    border-radius: 20px;
    padding: 36px 28px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.guest-alert-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: #f3f4f6;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    color: #555;
    cursor: pointer;
}

.guest-alert-modal__icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fce8ea;
    color: #e57265;
    margin-bottom: 16px;
}

.guest-alert-modal__title {
    font-weight: 700;
    color: #082a3a;
    margin-bottom: 10px;
}

.guest-alert-modal__message {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 24px;
}

.guest-alert-modal__btn {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 16px;
    background: #1acc8d;
    color: #fff;
}

#guestAlertModal {
    z-index: 12050 !important;
}

body.guest-alert-open .modal-backdrop:last-of-type {
    z-index: 12040 !important;
}

#signup_invalid {
    display: block;
    min-height: 1.25rem;
}
