/* Notification Modal Styles */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.notification-modal.closing {
    animation: fadeOut 0.3s ease-in;
}

.notification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.notification-content {
    position: relative;
    background: #e0e5ec;
    border-radius: 20px;
    padding: 0;
    max-width: 700px;
    width: 95%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 
        12px 12px 24px #c4c9d0,
        -12px -12px 24px #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideIn 0.3s ease-out;
}

.notification-header {
    display: flex;
    align-items: center;
    padding: 24px 32px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.notification-icon {
    font-size: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.notification-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(108, 117, 125, 0.1);
    color: #2c3e50;
}

.notification-body {
    padding: 20px 32px 32px;
}

.notification-message {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Notification Types */
.notification-content.info {
    border-left: 4px solid #007bff;
}

.notification-content.success {
    border-left: 4px solid #28a745;
}

.notification-content.warning {
    border-left: 4px solid #ffc107;
}

.notification-content.error {
    border-left: 4px solid #dc3545;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-content {
        width: 95%;
        margin: 20px;
        max-width: 600px;
    }
    
    .notification-header {
        padding: 20px 24px 16px;
    }
    
    .notification-title {
        font-size: 18px;
    }
    
    .notification-body {
        padding: 16px 24px 24px;
    }
    
    .notification-message {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .notification-content {
        width: 98%;
        margin: 10px;
        max-width: 500px;
    }
    
    .notification-header {
        padding: 16px 20px 12px;
    }
    
    .notification-title {
        font-size: 16px;
    }
    
    .notification-body {
        padding: 12px 20px 20px;
    }
    
    .notification-message {
        font-size: 14px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .notification-content {
        background: #2d3748;
        color: #e2e8f0;
    }
    
    .notification-title {
        color: #e2e8f0;
    }
    
    .notification-message {
        color: #a0aec0;
    }
    
    .notification-close {
        color: #a0aec0;
    }
    
    .notification-close:hover {
        background: rgba(160, 174, 192, 0.1);
        color: #e2e8f0;
    }
}
