/* Styles pour les notifications */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 300px;
    max-width: 450px;
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    border-left: 4px solid var(--primary-color);
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification.success {
    border-left-color: #4CAF50;
}

.notification.success i {
    color: #4CAF50;
}

.notification.error {
    border-left-color: #F44336;
}

.notification.error i {
    color: #F44336;
}

.notification i {
    font-size: 24px;
    margin-right: 15px;
}

.notification-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
    padding: 5px;
    transition: color 0.2s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
        min-width: auto;
        max-width: none;
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .notification {
        padding: 12px 15px;
    }
    
    .notification i {
        font-size: 20px;
        margin-right: 10px;
    }
    
    .notification-content {
        font-size: 13px;
    }
}
