:root {
    --blanc: #ffffff;

    /* Couleurs principales */
    --primary-color: #2563eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;

    /* Couleurs de texte */
    --text-secondary: #64748b;
    --text-light: #94a3b8;

    /* Couleurs de fond */
    --bg-primary: #ffffff;

    /* Bordures */
    --border-color: #e2e8f0;

    /* Ombres */
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Rayons de bordure */
    --border-radius-lg: 12px;

    /* Transitions */
    --transition: all 0.3s ease;

    /* Espacements */
    --spacing-xs: 4px;
    --spacing-md: 16px;
}



/* WhatsApp flottant */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

a {
    text-decoration: none;
}

/* notification*/

.notifications-container {

    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    z-index: 9999;
}

.notification {
    background: var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    border-left: var(--error-color);
}

.notification.succes {
    border-left: var(--success-color);
}

.notification.info {
    border-left: var(--info-color);
}

.notification.warning {
    border-left: var(--warning-color);
}



.notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification.success .notification-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.notification.error .notification-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
}

.notification.warning .notification-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.notification.info .notification-icon {
    background: var(--primary-color);
    color: white;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.notification-message {
    color: white;
    font-size: 16px;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: var(--spacing-xs);
}