/**
 * États vides partagés
 * @package LangevinAventure
 */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.empty-state .empty-state-icon,
.empty-state .no-results-icon,
.empty-state .no-outings-icon {
    margin-bottom: 0.5rem;
    opacity: 1;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 16px;
    color: var(--color-text-light);
}

.no-results {
    display: none;
}

.no-results.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
