/* Notification Styles */
.notification {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    display: flex;
    gap: 16px;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.notification-error .notification-icon {
    background: #ef4444;
}

.notification-success .notification-icon {
    background: #10b981;
}

.notification-warning .notification-icon {
    background: #f59e0b;
}

.notification-info .notification-icon {
    background: #3b82f6;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.notification-message {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.notification-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.notification-close:hover {
    color: #475569;
    transform: scale(1.1);
}

.notification-close svg {
    width: 20px;
    height: 20px;
}

/* Notification Container */
#notificationContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    width: calc(100% - 40px);
}

@media (max-width: 768px) {
    #notificationContainer {
        left: 20px;
        right: 20px;
    }
}
