/* Notification System Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-message {
    flex: 1;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Notification Types */
.notification-success {
    background: var(--accent-green);
    color: white;
    border-left: 4px solid #059669;
}

.notification-error {
    background: #ef4444;
    color: white;
    border-left: 4px solid #dc2626;
}

.notification-info {
    background: var(--secondary-blue);
    color: white;
    border-left: 4px solid #2563eb;
}

.notification-warning {
    background: var(--accent-orange);
    color: white;
    border-left: 4px solid #ea580c;
}

/* Animation Keyframes */
@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;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .notification-close {
        align-self: flex-end;
    }
}
