/* Notification Toast */
.notification-container {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notification-container > * {
    pointer-events: auto;
}

.notification {
    background: #333 !important;
    color: #fff !important;
    padding: 15px 20px !important;
    min-width: 300px !important;
    max-width: 400px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    font-family: 'Momo Trust Sans', sans-serif;
    font-size: 14px !important;
    border-radius: 0;
    animation: slideInRight 0.3s ease-out;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    visibility: visible !important;
    opacity: 1 !important;
}

.notification.success {
    background: #ff9800;
}

.notification.error {
    background: #f44336;
}

.notification.warning {
    background: #ff9800;
}

.notification.info {
    background: #2196F3;
}

.notification-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
    font-family: 'Momo Trust Sans', sans-serif;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification.hide {
    animation: slideOutRight 0.3s ease-out forwards;
}

/* Site Notification Modal */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.notification-modal-content {
    background: #fff;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.notification-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 1;
}

.notification-close-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.notification-content {
    padding: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.notification-content h2,
.notification-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.notification-content p {
    margin-bottom: 15px;
}

.notification-content ul,
.notification-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.notification-actions {
    padding: 15px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.notification-close-action {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.notification-close-action:hover {
    background: #555;
}

@media (max-width: 768px) {
    .notification-modal-content {
        max-width: 95%;
        max-height: 90vh;
    }
    
    .notification-content {
        padding: 20px;
        font-size: 14px;
    }
    
    .notification-actions {
        padding: 15px 20px;
    }
}


