/**
 * Loader central (GIF).
 * Partagé par clients_search, administration, clients_form et les formulaires équipements.
 * Conteneur `.loading-overlay` : fond blanc opaque + fade-out dans `modules/theme.css`.
 */

.business-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 1rem;
}

.business-loader-flame {
    width: 72px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(249, 115, 22, 0.45));
}

.business-loader-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b5563;
    text-align: center;
    max-width: 18rem;
    line-height: 1.35;
}

.business-loader--silent .business-loader-text {
    display: none;
}

/* Offre mode dégradé (indépendant de Tailwind / des modules ES) */
.degraded-mode-offer {
    display: none;
    margin-top: 1.5rem;
    text-align: center;
    max-width: 20rem;
    padding: 0 1rem;
}
.degraded-mode-offer.is-visible {
    display: block;
}
.degraded-mode-offer p {
    font-size: 0.875rem;
    color: #374151;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}
.degraded-mode-offer__btn {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    background: #d97706;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.degraded-mode-offer__btn:hover {
    background: #b45309;
}
