.notification-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.notification-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    animation: modalFadeIn 0.3s ease-out;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0;
    color: white;
}

.notification-header.success {
    background: linear-gradient(to right, #4f46e5, #7e3af2);
}

.notification-header.error {
    background: linear-gradient(to right, #e53e3e, #c53030);
}

.notification-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.close-btn {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.notification-body {
    padding: 20px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}