/* ============================================================================
   LogiFlotte — état vide (aucune donnée à afficher).
   HTML : app/Views/components/empty_state.php
   ============================================================================ */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--color-surface);
    border: 1px dashed var(--color-border-strong);
    border-radius: var(--radius-lg);
    color: var(--color-text-muted);
}

.empty-state-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}
.empty-state-icon svg {
    width: 28px;
    height: 28px;
}

.empty-state-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.empty-state-message {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    max-width: 420px;
    margin-bottom: var(--space-4);
}
