/* Custom Notification Styles */

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notification-overlay.show {
    opacity: 1;
    visibility: visible;
}

.notification-popup {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.notification-overlay.show .notification-popup {
    transform: translateY(0);
    opacity: 1;
}

.notification-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E8E8D6;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.notification-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.notification-title {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.notification-message {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.5;
}

.notification-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-btn:hover {
    background-color: #b56e4c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(203, 124, 87, 0.3);
}