/* Guest Limit Popup Styles */
.guest-limit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.guest-limit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999998;
    cursor: pointer;
}

.guest-limit-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    max-width: 350px;
    width: 90%;
    text-align: center;
    z-index: 999999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.guest-limit-popup-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.guest-limit-popup-message {
    margin: 0 0 20px 0;
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

.guest-limit-popup-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.guest-limit-popup-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.guest-limit-popup-btn-primary {
    background: #ff0f65;
    color: #fff;
}

.guest-limit-popup-btn-primary:hover {
    background: #be123c;
    transform: translateY(-1px);
}

.guest-limit-popup-btn-secondary {
    background: #333;
    color: #fff;
    border: 1px solid #444;
}

.guest-limit-popup-btn-secondary:hover {
    background: #444;
    transform: translateY(-1px);
}

.guest-limit-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.guest-limit-popup-close:hover {
    color: #fff;
    background: #333;
}

/* Disable all interactions when popup is open */
body.guest-limit-popup-open {
    overflow: hidden !important;
    pointer-events: none;
}

body.guest-limit-popup-open * {
    pointer-events: none;
}

/* Enable interactions only for popup elements */
body.guest-limit-popup-open .guest-limit-popup,
body.guest-limit-popup-open .guest-limit-popup * {
    pointer-events: auto;
}
