.notification-toast {
    position: fixed;
    top: 100px;
    left: -350px;
    width: 320px;
    background-color: #ffffff;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: left 0.5s ease-out;
}
.notification-toast.show { left: 20px; }
.toast-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.toast-content { flex: 1; }
.toast-title { font-weight: bold; margin-bottom: 2px; font-size: 14px; }
.toast-meta { font-size: 12px; color: #777; margin-top: 3px; }
.toast-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    align-self: flex-start;
}
.toast-close:hover { color: #333; }

/* Couleurs spécifiques par type (en se basant sur les fichiers existants) */
.toast-primary { border-left: 4px solid #4285F4; }
.toast-primary .toast-icon { background-color: #e8f0fe; color: #4285F4; }

.toast-architectes { border-left: 4px solid #673ab7; }
.toast-architectes .toast-icon { background-color: #f3e5f5; color: #673ab7; }

.toast-artisans { border-left: 4px solid #4caf50; }
.toast-artisans .toast-icon { background-color: #e8f5e9; color: #4caf50; }

.toast-brasseries { border-left: 4px solid #ff9800; }
.toast-brasseries .toast-icon { background-color: #fff3e0; color: #ff9800; }

.toast-controle { border-left: 4px solid #2196f3; }
.toast-controle .toast-icon { background-color: #e3f2fd; color: #2196f3; }

.toast-hoteliers { border-left: 4px solid #e91e63; }
.toast-hoteliers .toast-icon { background-color: #fce4ec; color: #e91e63; }

.toast-irve { border-left: 4px solid #009688; }
.toast-irve .toast-icon { background-color: #e0f2f1; color: #009688; }

.toast-opticiens { border-left: 4px solid #3f51b5; }
.toast-opticiens .toast-icon { background-color: #e8eaf6; color: #3f51b5; }

.toast-restaurateurs { border-left: 4px solid #f44336; }
.toast-restaurateurs .toast-icon { background-color: #ffebee; color: #f44336; }

.toast-securite { border-left: 4px solid #607d8b; }
.toast-securite .toast-icon { background-color: #eceff1; color: #607d8b; }

.toast-sport { border-left: 4px solid #ffc107; }
.toast-sport .toast-icon { background-color: #fff8e1; color: #ffc107; }

.toast-transport { border-left: 4px solid #795548; }
.toast-transport .toast-icon { background-color: #efebe9; color: #795548; }

.toast-velos { border-left: 4px solid #8bc34a; }
.toast-velos .toast-icon { background-color: #f1f8e9; color: #8bc34a; }

.toast-viticulteurs { border-left: 4px solid #9c27b0; }
.toast-viticulteurs .toast-icon { background-color: #f3e5f5; color: #9c27b0; }
