/**
 * EPSYTERA STRUCTURES - CSS BASE PARTAGÉ
 * Variables, composants communs et utilitaires
 * Version 2.2.0
 */

/* ============================================
   IMPORT FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Couleurs par défaut (Epsytera) - seront overridées par inline CSS */
    --es-primary: #0E2D94;
    --es-primary-dark: #002149;
    --es-text: #333333;
    --es-background: #F9F9F9;
    --es-accent: #C6D2FF;
    --es-zone-fill: #0E2D94;
    
    /* Couleurs fixes */
    --es-white: #FFFFFF;
    --es-error: #dc3545;
    --es-success: #28a745;
    --es-warning: #ffc107;
    
    /* Typographie */
    --es-font-family: 'Inter', 'Avenir', Arial, sans-serif;
    --es-font-size-xs: 12px;
    --es-font-size-sm: 14px;
    --es-font-size-base: 16px;
    --es-font-size-lg: 18px;
    --es-font-size-xl: 20px;
    --es-font-size-2xl: 24px;
    
    /* Espacements */
    --es-spacing-xs: 4px;
    --es-spacing-sm: 8px;
    --es-spacing-md: 16px;
    --es-spacing-lg: 24px;
    --es-spacing-xl: 32px;
    
    /* Border radius */
    --es-radius-sm: 4px;
    --es-radius-md: 8px;
    --es-radius-lg: 12px;
    --es-radius-xl: 30px;
    --es-radius-full: 45px;
    
    /* Shadows */
    --es-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --es-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --es-shadow-lg: 0 4px 27px rgba(146, 146, 146, 0.25);
    --es-shadow-xl: 0 4px 29px rgba(48, 48, 48, 0.25);
    
    /* Transitions */
    --es-transition-fast: 0.15s ease-out;
    --es-transition-base: 0.3s ease-out;
    --es-transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --es-transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   BASE RESET
   ============================================ */
.recherche-etablissements-shortcode,
.recherche-etablissements-shortcode * {
    box-sizing: border-box;
}

.recherche-etablissements-shortcode {
    font-family: var(--es-font-family);
    width: 100%;
    max-width: 100%;
    color: var(--es-text);
}

/* ============================================
   ACCESSIBILITY (ARIA)
   ============================================ */

/* Screen reader only */
.sr-only,
.recherche-etablissements-shortcode .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus visible */
.recherche-etablissements-shortcode *:focus {
    outline: 3px solid var(--es-primary);
    outline-offset: 2px;
}

.recherche-etablissements-shortcode *:focus:not(:focus-visible) {
    outline: none;
}

.recherche-etablissements-shortcode *:focus-visible {
    outline: 3px solid var(--es-primary);
    outline-offset: 2px;
}

/* Skip link for keyboard navigation */
.recherche-etablissements-shortcode .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--es-primary-dark);
    color: var(--es-white);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    border-radius: var(--es-radius-sm);
    transition: top var(--es-transition-fast);
}

.recherche-etablissements-shortcode .skip-link:focus {
    top: 10px;
}

/* Live region for screen readers */
.recherche-etablissements-shortcode [aria-live] {
    /* Ensure live regions are announced */
}

.recherche-etablissements-shortcode .visually-hidden-live {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .recherche-etablissements-shortcode .form-select,
    .recherche-etablissements-shortcode .form-control {
        border-width: 3px;
    }
    
    .recherche-etablissements-shortcode .profil-btn {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .recherche-etablissements-shortcode *,
    .recherche-etablissements-shortcode *::before,
    .recherche-etablissements-shortcode *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade in animation */
@keyframes es-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade out animation */
@keyframes es-fade-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Scale in animation */
@keyframes es-scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse animation for loading states */
@keyframes es-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Spin animation */
@keyframes es-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Shimmer for skeleton loading */
@keyframes es-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Bounce animation */
@keyframes es-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Marker drop animation */
@keyframes es-marker-drop {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.5);
    }
    60% {
        transform: translateY(5px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Results update animation */
.recherche-etablissements-shortcode .es-animate-in {
    animation: es-fade-in 0.3s ease-out forwards;
}

.recherche-etablissements-shortcode .es-animate-out {
    animation: es-fade-out 0.2s ease-out forwards;
}

.recherche-etablissements-shortcode .es-animate-scale {
    animation: es-scale-in 0.3s ease-out forwards;
}

.recherche-etablissements-shortcode .es-animate-pulse {
    animation: es-pulse 1.5s ease-in-out infinite;
}

/* Staggered animation for list items */
.recherche-etablissements-shortcode .es-stagger-item {
    opacity: 0;
    animation: es-fade-in 0.4s ease-out forwards;
}

.recherche-etablissements-shortcode .es-stagger-item:nth-child(1) { animation-delay: 0.05s; }
.recherche-etablissements-shortcode .es-stagger-item:nth-child(2) { animation-delay: 0.1s; }
.recherche-etablissements-shortcode .es-stagger-item:nth-child(3) { animation-delay: 0.15s; }
.recherche-etablissements-shortcode .es-stagger-item:nth-child(4) { animation-delay: 0.2s; }
.recherche-etablissements-shortcode .es-stagger-item:nth-child(5) { animation-delay: 0.25s; }
.recherche-etablissements-shortcode .es-stagger-item:nth-child(6) { animation-delay: 0.3s; }
.recherche-etablissements-shortcode .es-stagger-item:nth-child(7) { animation-delay: 0.35s; }
.recherche-etablissements-shortcode .es-stagger-item:nth-child(8) { animation-delay: 0.4s; }
.recherche-etablissements-shortcode .es-stagger-item:nth-child(9) { animation-delay: 0.45s; }
.recherche-etablissements-shortcode .es-stagger-item:nth-child(10) { animation-delay: 0.5s; }

/* ============================================
   FORM ELEMENTS COMMUNS
   ============================================ */
.recherche-etablissements-shortcode .form-select,
.recherche-etablissements-shortcode .form-control {
    border: 1px solid var(--es-primary-dark);
    border-radius: var(--es-radius-xl);
    padding: 14px 16px;
    font-size: var(--es-font-size-base);
    font-family: var(--es-font-family);
    font-weight: 500;
    color: var(--es-primary-dark);
    background: var(--es-white);
    width: 100%;
    cursor: pointer;
    transition: all var(--es-transition-base);
    appearance: none;
    min-height: 52px;
    box-sizing: border-box;
    text-align: left;
}

.recherche-etablissements-shortcode .form-select {
    background-image: var(--chevron-svg, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M2 0h8c1 0 2 1 2 2L6 8 0 2c0-1 1-2 2-2z' fill='%23002149'/%3E%3C/svg%3E"));
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.recherche-etablissements-shortcode .form-select::placeholder,
.recherche-etablissements-shortcode .form-control::placeholder {
    color: rgba(0, 33, 73, 0.5);
}

.recherche-etablissements-shortcode .form-select:focus,
.recherche-etablissements-shortcode .form-control:focus {
    outline: none;
    border-color: var(--es-primary);
    box-shadow: 0 0 0 4px rgba(14, 45, 148, 0.15);
    transform: translateY(-1px);
}

.recherche-etablissements-shortcode .form-select:disabled,
.recherche-etablissements-shortcode .form-control:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f5f5f5;
    transform: none;
}

.recherche-etablissements-shortcode .form-select option {
    color: var(--es-primary-dark);
}

/* Input change animation */
.recherche-etablissements-shortcode .form-select.es-changed,
.recherche-etablissements-shortcode .form-control.es-changed {
    animation: es-pulse 0.3s ease-out;
}

/* ============================================
   PROFIL SWITCH (Toggle Adulte/Enfant)
   ============================================ */
.recherche-etablissements-shortcode .profils-selection {
    display: flex;
    align-items: center;
    border: 1px solid var(--es-primary-dark);
    border-radius: var(--es-radius-full);
    padding: 4px;
    gap: 4px;
    position: relative;
    background: transparent;
    width: fit-content;
    min-height: 52px;
    box-sizing: border-box;
}

.recherche-etablissements-shortcode .profils-selection::before {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    background: var(--es-primary-dark);
    border-radius: var(--es-radius-full);
    transition: all var(--es-transition-slow);
    z-index: 0;
}

.recherche-etablissements-shortcode .profils-selection[data-active="adulte"]::before {
    width: var(--adulte-width, 120px);
    left: 4px;
}

.recherche-etablissements-shortcode .profils-selection[data-active="enfant-et-ados"]::before {
    width: var(--enfant-width, 180px);
    left: var(--enfant-left, 128px);
}

.recherche-etablissements-shortcode .profil-btn {
    padding: 10px 24px;
    border-radius: var(--es-radius-full);
    border: none;
    background: transparent !important;
    color: var(--es-primary-dark);
    font-size: var(--es-font-size-base);
    font-family: var(--es-font-family);
    font-weight: 700;
    cursor: pointer;
    transition: color var(--es-transition-base), transform var(--es-transition-fast);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--es-spacing-sm);
}

.recherche-etablissements-shortcode .profil-btn:hover {
    transform: scale(1.02);
}

.recherche-etablissements-shortcode .profil-btn:active {
    transform: scale(0.98);
}

.recherche-etablissements-shortcode .profil-btn:hover,
.recherche-etablissements-shortcode .profil-btn:focus,
.recherche-etablissements-shortcode .profil-btn:active {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.recherche-etablissements-shortcode .profil-btn.active {
    color: var(--es-background) !important;
}

.recherche-etablissements-shortcode .profil-icon {
    width: 16px;
    height: 17px;
    flex-shrink: 0;
    transition: transform var(--es-transition-base);
}

.recherche-etablissements-shortcode .profil-btn:hover .profil-icon {
    transform: scale(1.1);
}

/* ============================================
   LOADER / SPINNER
   ============================================ */
.recherche-etablissements-shortcode .map-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 249, 249, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: var(--es-radius-lg);
    backdrop-filter: blur(4px);
    animation: es-fade-in 0.2s ease-out;
}

.recherche-etablissements-shortcode .map-loader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--es-primary);
    border-radius: 50%;
    animation: es-spin 0.8s linear infinite;
}

.recherche-etablissements-shortcode .map-loader p {
    margin-top: 20px;
    color: var(--es-primary);
    font-size: var(--es-font-size-base);
    font-weight: 700;
    animation: es-pulse 1.5s ease-in-out infinite;
}

/* ============================================
   MESSAGES D'ERREUR / INFO
   ============================================ */
.recherche-etablissements-shortcode .es-message {
    padding: var(--es-spacing-md);
    border-radius: var(--es-radius-md);
    margin: var(--es-spacing-md) 0;
    display: flex;
    align-items: center;
    gap: var(--es-spacing-sm);
    font-weight: 500;
    animation: es-fade-in 0.3s ease-out;
}

.recherche-etablissements-shortcode .es-message-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: var(--es-error);
}

.recherche-etablissements-shortcode .es-message-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.recherche-etablissements-shortcode .es-message-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.recherche-etablissements-shortcode .es-message-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: var(--es-success);
}

.recherche-etablissements-shortcode .es-no-results {
    text-align: center;
    padding: var(--es-spacing-xl);
    color: var(--es-text);
    animation: es-fade-in 0.4s ease-out;
}

.recherche-etablissements-shortcode .es-no-results-icon {
    font-size: 48px;
    margin-bottom: var(--es-spacing-md);
    opacity: 0.5;
    animation: es-bounce 2s ease-in-out infinite;
}

.recherche-etablissements-shortcode .es-no-results-title {
    font-size: var(--es-font-size-lg);
    font-weight: 700;
    margin-bottom: var(--es-spacing-sm);
    color: var(--es-primary-dark);
}

.recherche-etablissements-shortcode .es-no-results-text {
    font-size: var(--es-font-size-base);
    color: var(--es-text);
}

/* ============================================
   STRUCTURE CARD - STYLES COMMUNS
   ============================================ */
.recherche-etablissements-shortcode .structure-card {
    background: var(--es-white);
    border-radius: var(--es-radius-lg);
    box-shadow: var(--es-shadow-lg);
    display: flex;
    position: relative;
    transition: all var(--es-transition-base);
    cursor: pointer;
}

.recherche-etablissements-shortcode .structure-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.recherche-etablissements-shortcode .structure-card.highlighted {
    box-shadow: 0 0 0 3px var(--es-primary-dark);
    animation: es-pulse 0.5s ease-out;
}

.recherche-etablissements-shortcode .structure-title {
    color: var(--es-primary-dark);
    font-size: var(--es-font-size-xl);
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.25;
}

.recherche-etablissements-shortcode .structure-title-divider,
.recherche-etablissements-shortcode .structure-divider {
    width: 100%;
    height: 1px;
    background: var(--es-primary-dark);
    opacity: 0.14;
    margin-bottom: 10px;
}

/* ============================================
   BOUTON CONSULTER
   ============================================ */
.recherche-etablissements-shortcode .consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--es-primary-dark);
    border: 1px solid var(--es-primary-dark);
    border-radius: 60px;
    color: var(--es-background);
    font-size: var(--es-font-size-base);
    font-family: var(--es-font-family);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--es-transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.recherche-etablissements-shortcode .consult-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.recherche-etablissements-shortcode .consult-btn:hover::before {
    left: 100%;
}

.recherche-etablissements-shortcode .consult-btn:hover {
    background: transparent;
    color: var(--es-primary-dark);
    transform: translateY(-2px);
}

.recherche-etablissements-shortcode .consult-btn:active {
    transform: translateY(0);
}

.recherche-etablissements-shortcode .consult-btn::after {
    content: '→';
    font-size: 18px;
    transition: transform var(--es-transition-base);
}

.recherche-etablissements-shortcode .consult-btn:hover::after {
    transform: translateX(4px);
}

/* ============================================
   LEAFLET OVERRIDES
   ============================================ */
.recherche-etablissements-shortcode .leaflet-container {
    font-family: var(--es-font-family);
    height: 100% !important;
    width: 100% !important;
}

.recherche-etablissements-shortcode .leaflet-control-zoom a {
    border-color: var(--es-primary) !important;
    color: var(--es-primary) !important;
    transition: all var(--es-transition-fast) !important;
}

.recherche-etablissements-shortcode .leaflet-control-zoom a:hover {
    background: var(--es-primary) !important;
    color: var(--es-white) !important;
    transform: scale(1.05);
}

.recherche-etablissements-shortcode .leaflet-popup-content {
    font-family: var(--es-font-family);
    margin: 0;
    padding: 0;
}

.recherche-etablissements-shortcode .leaflet-popup-content-wrapper {
    padding: 16px;
    border-radius: var(--es-radius-lg);
    box-shadow: var(--es-shadow-xl);
    animation: es-scale-in 0.3s ease-out;
}

/* Marker animation - pas d'effet hover pour éviter les problèmes */
.recherche-etablissements-shortcode .leaflet-marker-icon.es-marker-new {
    animation: es-marker-fade-in 0.4s ease-out forwards;
}

@keyframes es-marker-fade-in {
    from {
        opacity: 0;
        filter: blur(4px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* Map zoom transition */
.recherche-etablissements-shortcode .leaflet-zoom-anim .leaflet-zoom-animated {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ============================================
   AUTOCOMPLETE DROPDOWN
   ============================================ */
.recherche-etablissements-shortcode .es-autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.recherche-etablissements-shortcode .es-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--es-white);
    border: 2px solid var(--es-primary-dark);
    border-top: none;
    border-radius: 0 0 var(--es-radius-lg) var(--es-radius-lg);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: var(--es-shadow-md);
    animation: es-fade-in 0.2s ease-out;
}

.recherche-etablissements-shortcode .es-autocomplete-dropdown.show {
    display: block;
}

.recherche-etablissements-shortcode .es-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: all var(--es-transition-fast);
}

.recherche-etablissements-shortcode .es-autocomplete-item:last-child {
    border-bottom: none;
}

.recherche-etablissements-shortcode .es-autocomplete-item:hover,
.recherche-etablissements-shortcode .es-autocomplete-item.selected {
    background: var(--es-accent);
    padding-left: 20px;
}

.recherche-etablissements-shortcode .es-autocomplete-item-title {
    font-weight: 600;
    color: var(--es-primary-dark);
}

.recherche-etablissements-shortcode .es-autocomplete-item-subtitle {
    font-size: var(--es-font-size-sm);
    color: var(--es-text);
    margin-top: 2px;
}

.recherche-etablissements-shortcode .es-autocomplete-loading {
    padding: 12px 16px;
    text-align: center;
    color: var(--es-text);
}

.recherche-etablissements-shortcode .es-autocomplete-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--es-primary);
    border-top-color: transparent;
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
    animation: es-spin 0.8s linear infinite;
}

.recherche-etablissements-shortcode .es-autocomplete-no-results {
    padding: 12px 16px;
    text-align: center;
    color: var(--es-text);
    font-style: italic;
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.recherche-etablissements-shortcode .skeleton-wrapper {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.recherche-etablissements-shortcode .skeleton-card {
    display: flex;
    background: var(--es-white);
    border-radius: var(--es-radius-lg);
    box-shadow: var(--es-shadow-md);
    overflow: hidden;
    min-height: 300px;
}

.recherche-etablissements-shortcode .skeleton-image {
    width: 222px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: es-shimmer 1.5s infinite;
}

.recherche-etablissements-shortcode .skeleton-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recherche-etablissements-shortcode .skeleton-title,
.recherche-etablissements-shortcode .skeleton-line,
.recherche-etablissements-shortcode .skeleton-button {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: es-shimmer 1.5s infinite;
    border-radius: var(--es-radius-sm);
}

.recherche-etablissements-shortcode .skeleton-title {
    height: 28px;
    width: 70%;
}

.recherche-etablissements-shortcode .skeleton-line {
    height: 18px;
    width: 90%;
}

.recherche-etablissements-shortcode .skeleton-line.short {
    width: 50%;
}

.recherche-etablissements-shortcode .skeleton-button {
    height: 50px;
    width: 285px;
    border-radius: 60px;
    margin-top: auto;
}

/* ============================================
   COUNTER / RESULTS COUNT
   ============================================ */
.recherche-etablissements-shortcode .es-results-count {
    font-size: var(--es-font-size-sm);
    color: var(--es-text);
    padding: var(--es-spacing-sm) 0;
    transition: all var(--es-transition-base);
}

.recherche-etablissements-shortcode .es-results-count.es-updating {
    opacity: 0.5;
}

.recherche-etablissements-shortcode .es-results-count strong {
    color: var(--es-primary-dark);
    font-weight: 700;
}

/* ============================================
   RESPONSIVE BASE
   ============================================ */
@media (max-width: 768px) {
    /* Uniformiser la hauteur des éléments de formulaire */
    .recherche-etablissements-shortcode .profils-selection {
        min-height: 52px;
        box-sizing: border-box;
    }
    
    .recherche-etablissements-shortcode .profil-btn {
        padding: 12px 16px;
        font-size: var(--es-font-size-sm);
    }
    
    .recherche-etablissements-shortcode .form-select,
    .recherche-etablissements-shortcode .form-control {
        min-height: 52px;
        box-sizing: border-box;
        font-size: var(--es-font-size-sm);
        padding: 14px 16px;
        padding-right: 45px;
        text-align: left;
    }
    
    /* Alignement du texte à gauche dans les selects */
    .recherche-etablissements-shortcode .form-select option {
        text-align: left;
    }
    
    .recherche-etablissements-shortcode .skeleton-card {
        flex-direction: column;
    }
    
    .recherche-etablissements-shortcode .skeleton-image {
        width: 100%;
        height: 150px;
    }
}


