/* Notification Popup Styles */

.notification-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.notification-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.notification-popup--visible {
    opacity: 1;
    pointer-events: auto;
}

.notification-popup--hidden {
    opacity: 0;
    pointer-events: none;
}

.notification-popup__container {
    position: relative;
    background: #FFFFFF;
    color: #2b3a4f;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    max-width: 750px;
    width: 100%;
    transform: scale(0.9);
    transition: transform 0.3s ease-out;
}

.notification-popup--visible .notification-popup__container {
    transform: scale(1);
}

.notification-popup__content {
    margin-bottom: 20px;
}

.notification-popup__heading {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 600;
    color: #2b3a4f;
}

.notification-popup__message {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #ecf0f1;
}

.notification-popup__message p {
    margin: 0 0 15px 0;
    color: #000000!important;
    font-size: 16px;
}

.notification-popup__message p strong {
    color: #2b3a4f!important;
}

.notification-popup__message p:last-child {
    margin-bottom: 0;
}

.notification-popup__button {
    background: #b58d26;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.notification-popup__button:hover {
    background: #b58d26!;
}

.notification-popup__button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.notification-popup__button:active {
    transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-popup {
        padding: 16px;
    }
    
    .notification-popup__container {
        padding: 24px;
    }
    
    .notification-popup__button {
        max-width: none;
        width: 100%;
    }
}
