.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-actions button {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Style pour les notifications */
/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-left: 4px solid var(--success);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
    min-width: 300px;
}

.notification.error {
    border-left-color: var(--danger);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.notification-content i:first-child {
    font-size: 18px;
}

.notification button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #999;
    padding: 0;
    margin-left: auto;
    transition: color 0.3s;
}

.notification button:hover {
    color: var(--danger);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive pour les notifications */
@media (max-width: 768px) {
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}