    /* Header Sticky Mobile: 2 boutons (Filtres + Ajouter) */
    .vlb-events-header {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      width: 100%;
      background: #fff;
      border-bottom: 2px solid #BD6089;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      padding: 12px;
      gap: 8px;
    }

    @media (min-width: 1024px) {
      .vlb-events-header {
        display: none;
        /* Cacher sur desktop */
      }
    }

    /* Layout Desktop: Calendrier + Filtres + Grille */
    .vlb-events-layout-desktop {
      display: block;
      /* Sur mobile, on affiche seulement la grille */
    }

    /* Sur mobile, cacher la sidebar */
    .vlb-events-sidebar {
      display: none;
    }

    @media (min-width: 1024px) {
      .vlb-events-layout-desktop {
        display: flex;
        gap: 32px;
        padding: 32px;
        max-width: 1600px;
        margin: 0 auto;
        align-items: flex-start;
      }

      .vlb-events-main {
        flex: 1;
        min-width: 0;
      }

      .vlb-events-sidebar {
        display: block;
        width: 360px;
        flex-shrink: 0;
        position: sticky;
        top: 24px;
        align-self: flex-start;
      }

      .vlb-events-calendar-widget,
      .vlb-events-filters-widget,
      .vlb-events-add-widget {
        background: #fff;
        border-radius: 16px;
        padding: 24px;
        margin-bottom: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: box-shadow 0.3s ease;
      }

      .vlb-events-calendar-widget:hover,
      .vlb-events-filters-widget:hover,
      .vlb-events-add-widget:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
      }

      .vlb-btn-add-event-desktop {
        width: 100%;
        padding: 14px 20px;
        background: #BD6089;
        color: #fff;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
      }

      .vlb-btn-add-event-desktop:hover {
        background: #a04d73;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(189, 96, 137, 0.3);
      }

      .vlb-btn-add-event-desktop:active {
        transform: translateY(0);
      }

      .vlb-btn-add-icon {
        font-size: 18px;
        line-height: 1;
      }

      .vlb-btn-add-label {
        font-size: 15px;
        font-weight: 600;
      }

      .vlb-sidebar-title {
        font-size: 20px;
        font-weight: 700;
        color: #111827;
        margin: 0;
        padding-bottom: 16px;
        display: none;
      }

      /* Pills de filtres actifs - Desktop au-dessus de la liste */
      .vlb-events-main .vlb-active-filters {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding: 12px 16px;
        background: #fafafa;
        border-radius: 12px;
        border: 1px solid #f0f0f0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
      }

      /* Cacher l'encart dans la sidebar sur desktop */
      .vlb-events-sidebar .vlb-active-filters {
        display: none !important;
      }

      .vlb-active-filters-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
      }

      .vlb-active-filters-text {
        font-size: 13px;
        font-weight: 500;
        color: #6b7280;
        line-height: 1.4;
        flex: 1;
      }

      .vlb-filter-reset-all {
        background: transparent;
        border: 1px solid #e5e7eb;
        color: #9ca3af;
        cursor: pointer;
        padding: 6px;
        border-radius: 6px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
      }

      .vlb-filter-reset-all:hover {
        background: #f3f4f6;
        border-color: #d1d5db;
        color: #6b7280;
      }

      .vlb-filter-reset-all svg {
        width: 12px;
        height: 12px;
      }

      #vlb-calendar-container {
        min-height: 320px;
      }

      /* Pills pour les villes */
      .vlb-filters-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
      }

      @media (min-width: 1024px) {
        .vlb-filters-pills {
          gap: 8px;
        }
      }

      .vlb-pill {
        padding: 6px 12px;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        background: #fafafa;
        color: #6b7280;
        font-size: 13px;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
      }

      .vlb-pill:hover {
        border-color: #d1d5db;
        background: #f3f4f6;
        color: #374151;
      }

      .vlb-pill.active {
        background: #BD6089;
        border-color: #BD6089;
        color: #fff;
        font-weight: 500;
      }

      @media (min-width: 1024px) {
        .vlb-pill {
          padding: 8px 14px;
          font-size: 14px;
        }
      }

      .vlb-events-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .vlb-header-btn {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 12px 8px;
      background: #fff;
      border: 2px solid #BD6089;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 14px;
      color: #333;
    }

    .vlb-header-btn:hover {
      background: #BD6089;
      color: #fff;
    }

    .vlb-btn-icon {
      font-size: 20px;
      line-height: 1;
    }

    .vlb-btn-label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
    }

    /* Grille d'événements - Utilise les styles existants du plugin */
    .vlb-events-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
      padding: 20px 12px;
      list-style: none;
      margin: 0;
    }

    @media (min-width: 768px) {
      .vlb-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 24px;
      }
    }

    @media (min-width: 1024px) {
      .vlb-events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        padding: 0;
      }
    }

    /* Assurer que toutes les cartes ont la même largeur */
    .vlb-events-grid>li {
      width: 100%;
      min-width: 0;
      display: flex;
    }

    .vlb-events-grid .vlb-event-card-clickable {
      width: 100%;
      min-width: 0;
      flex: 1;
    }

    /* Les styles des cartes sont DÉJÀ dans vlb-events.css */
    /* On ne surcharge RIEN - on utilise les styles existants */

    /* Popup - Les styles sont DÉJÀ dans vlb-events.css */
    /* On ne surcharge RIEN - on utilise les styles existants */

    .vlb-events-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 40px 20px;
      color: #666;
    }

    /* Pagination */
    .vlb-events-pagination {
      padding: 20px;
      text-align: center;
    }

    .vlb-events-pagination .page-numbers {
      display: inline-flex;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    /* Panel Mobile Slide-Down */
    .vlb-mobile-filters-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 998;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .vlb-mobile-filters-overlay.active {
      display: block;
      opacity: 1;
    }

    .vlb-mobile-filters-panel {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      max-height: 75vh;
      background: #fff;
      z-index: 999;
      transform: translateY(-100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
      border-radius: 0 0 20px 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding-top: 54px;
    }

    .vlb-mobile-filters-panel.active {
      transform: translateY(0);
    }

    /* Panel Mobile Auth (Connexion/Création d'événement) */
    .vlb-mobile-auth-panel {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      max-height: 90vh;
      background: #fff;
      z-index: 999;
      transform: translateY(-100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
      border-radius: 0 0 20px 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding-top: 54px;
    }

    .vlb-mobile-auth-panel.active {
      transform: translateY(0);
    }

    /* Cacher le panel auth sur desktop */
    @media (min-width: 1024px) {

      .vlb-mobile-auth-panel,
      #vlb-mobile-auth-overlay {
        display: none !important;
      }
    }

    .vlb-mobile-panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      border-bottom: 1px solid #e5e7eb;
      background: #fff;
      position: relative;
    }

    .vlb-mobile-panel-header h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      color: #111827;
      flex: 1;
      text-align: center;
    }




    /* Pills pour les villes dans le panel mobile */
    .vlb-filters-pills-mobile {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .vlb-pill-mobile {
      padding: 5px 10px;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      background: #fff;
      color: #374151;
      font-size: 12px;
      font-weight: 400;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .vlb-pill-mobile:hover {
      border-color: #BD6089;
      background: #fef2f2;
      color: #BD6089;
    }

    .vlb-pill-mobile.active {
      background: #BD6089;
      border-color: #BD6089;
      color: #fff;
      font-weight: 500;
    }

    /* Encart de filtres actifs dans le panel mobile */
    .vlb-active-filters-panel {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 8px 12px;
      background: #f9fafb;
      border-radius: 8px;
      border: 1px solid #f0f0f0;
    }

    .vlb-mobile-panel-content {
      flex: 1;
      overflow-y: auto;
      padding: 12px 16px;
    }

    .vlb-mobile-section-title {
      font-size: 16px;
      font-weight: 600;
      color: #374151;
      margin: 0 0 16px 0;
    }

    /* Accordéons Mobile - Discrets et compacts */
    .vlb-accordion-widget-mobile {
      background: transparent;
      border-radius: 0;
      margin-bottom: 8px;
      box-shadow: none;
      overflow: hidden;
      border: none;
      border-bottom: 1px solid #f0f0f0;
    }

    .vlb-accordion-header-mobile {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 12px;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease;
      text-align: left;
    }

    .vlb-accordion-header-mobile:hover {
      background: #fafafa;
    }

    .vlb-accordion-header-mobile .vlb-mobile-section-title {
      font-size: 13px;
      font-weight: 500;
      color: #fff;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }

    .vlb-accordion-icon-mobile {
      width: 12px;
      height: 12px;
      color: #d1d5db;
      transition: transform 0.3s ease, color 0.2s ease;
      flex-shrink: 0;
    }

    .vlb-accordion-header-mobile[aria-expanded="true"] .vlb-accordion-icon-mobile {
      transform: rotate(180deg);
      color: #9ca3af;
    }

    .vlb-accordion-content-mobile {
      padding: 8px 12px 12px 12px;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    }

    .vlb-accordion-content-mobile[style*="display: block"] {
      max-height: 600px;
      opacity: 1;
    }

    .vlb-accordion-content-mobile[style*="display: none"] {
      max-height: 0;
      padding: 0 12px;
      opacity: 0;
    }

    /* Pills de filtres actifs - Mobile (au-dessus de la grille) */
    @media (max-width: 1023px) {
      .vlb-events-main .vlb-active-filters {
        display: flex;
        align-items: center;
        margin: 16px 12px 20px 12px;
        padding: 12px 16px;
        background: #fafafa;
        border-radius: 12px;
        border: 1px solid #f0f0f0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
      }

      .vlb-events-main .vlb-active-filters-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
      }

      .vlb-events-main .vlb-active-filters-text {
        font-size: 13px;
        font-weight: 500;
        color: #6b7280;
        line-height: 1.4;
        flex: 1;
      }

      .vlb-events-main .vlb-filter-reset-all {
        background: transparent;
        border: 1px solid #e5e7eb;
        color: #9ca3af;
        cursor: pointer;
        padding: 6px;
        border-radius: 6px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
      }

      .vlb-events-main .vlb-filter-reset-all:hover {
        background: #f3f4f6;
        border-color: #d1d5db;
        color: #6b7280;
      }

      .vlb-events-main .vlb-filter-reset-all svg {
        width: 12px;
        height: 12px;
      }
    }

    /* Sur mobile, cacher l'encart de la liste (il est dans le panel) */
    @media (max-width: 1023px) {
      .vlb-events-sidebar .vlb-active-filters {
        display: none !important;
      }

      .vlb-events-main #vlb-active-filters-mobile {
        display: none !important;
      }

      .vlb-events-main #vlb-active-filters {
        display: none !important;
      }
    }

    /* Sur desktop, afficher l'encart dans vlb-events-main et cacher celui de mobile */
    @media (min-width: 1024px) {
      .vlb-events-main #vlb-active-filters-mobile {
        display: none !important;
      }

      .vlb-events-main #vlb-active-filters {
        display: flex !important;
      }
    }

    #vlb-calendar-container-mobile {
      min-height: 240px;
      transition: min-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Quand l'accordéon calendrier est ouvert, s'assurer que le calendrier est entièrement visible */
    .vlb-accordion-widget-mobile.calendar-open #vlb-calendar-container-mobile {
      min-height: 260px;
    }

    .vlb-select-mobile {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      font-size: 16px;
      background: #fff;
      color: #374151;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }

    .vlb-select-mobile:focus {
      outline: none;
      border-color: #BD6089;
      box-shadow: 0 0 0 3px rgba(189, 96, 137, 0.1);
    }

    @media (min-width: 1024px) {

      .vlb-mobile-filters-panel,
      .vlb-mobile-filters-overlay {
        display: none !important;
      }
    }

    /* Calendrier Premium */
    .vlb-calendar {
      width: 100%;
    }

    .vlb-calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      padding: 0 2px;
    }

    .vlb-calendar-nav {
      background: none;
      border: none;
      font-size: 14px;
      color: #374151;
      cursor: pointer;
      padding: 4px 8px;
      border-radius: 6px;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .vlb-calendar-nav:hover {
      background: #f3f4f6;
      color: #BD6089;
    }

    .vlb-calendar-month-year {
      font-size: 13px;
      font-weight: 600;
      color: #111827;
      text-transform: capitalize;
    }

    .vlb-calendar-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
      margin-bottom: 4px;
    }

    .vlb-calendar-weekday {
      text-align: center;
      font-size: 10px;
      font-weight: 600;
      color: #6b7280;
      padding: 4px 0;
      text-transform: uppercase;
    }

    .vlb-calendar-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
    }

    .vlb-calendar-day {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #374151;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s ease;
      background: #fff;
      border: 1px solid transparent;
    }

    .vlb-calendar-day:hover {
      background: #f3f4f6;
      border-color: #BD6089;
    }

    .vlb-calendar-day.other-month {
      color: #d1d5db;
    }

    .vlb-calendar-day.today {
      background: #f0f9ff;
      color: #BD6089;
      border: 2px solid #BD6089;
      font-weight: 600;
    }

    .vlb-calendar-day.selected {
      background: #BD6089;
      color: #fff;
      box-shadow: 0 2px 8px rgba(189, 96, 137, 0.3);
      font-weight: 600;
    }

    .vlb-calendar-day.today.selected {
      background: #8a3f62;
      color: #fff;
      border-color: #8a3f62;
      box-shadow: 0 2px 8px rgba(138, 63, 98, 0.4);
    }

    .vlb-calendar-day.has-events {
      position: relative;
    }

    .vlb-calendar-day.has-events::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      background: #BD6089;
      border-radius: 50%;
    }

    .vlb-calendar-day.today.has-events::after {
      background: #fff;
    }

    .vlb-events-pagination .page-numbers li {
      display: inline-block;
    }

    .vlb-events-pagination .page-numbers a,
    .vlb-events-pagination .page-numbers span {
      display: inline-block;
      padding: 8px 12px;
      border: 1px solid #BD6089;
      border-radius: 4px;
      color: #BD6089;
      text-decoration: none;
    }

    .vlb-events-pagination .page-numbers .current {
      background: #BD6089;
      color: #fff;
    }

    /* Modales */
    /* ============================================
       MODALE DESKTOP - DESIGN AMÉLIORÉ
       ============================================ */
    @media (min-width: 1024px) {
      .vlb-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10000;
        align-items: center;
        justify-content: center;
        padding: 40px;
      }

      .vlb-modal.active {
        display: flex;
      }

      .vlb-modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
      }

      .vlb-modal-content {
        position: relative;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        max-width: 900px;
        width: 100%;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        z-index: 1;
        animation: vlb-modal-slide-in 0.3s ease-out;
      }

      @keyframes vlb-modal-slide-in {
        from {
          opacity: 0;
          transform: translateY(-20px) scale(0.95);
        }

        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      .vlb-modal-large {
        max-width: 800px;
      }

      .vlb-modal-header {
        background: linear-gradient(135deg, #BD6089 0%, #a04d73 100%);
        color: #fff;
        padding: 24px 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .vlb-modal-header h3 {
        margin: 0;
        font-size: 22px;
        font-weight: 600;
        color: #fff;
      }


      .vlb-modal-body {
        padding: 32px;
        overflow-y: auto;
        flex: 1;
        background: #f9fafb;
      }

      .vlb-modal-actions {
        padding: 20px 32px;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        display: flex;
        gap: 12px;
        justify-content: flex-end;
      }

      /* Tableau des événements - DESIGN PREMIUM */
      #vlb-desktop-events-tbody {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      }

      #vlb-desktop-events-tbody table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
      }

      #vlb-desktop-events-tbody thead th {
        background: #f9fafb;
        padding: 14px 16px;
        text-align: left;
        font-weight: 600;
        font-size: 13px;
        color: #374151;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #e5e7eb;
      }

      #vlb-desktop-events-tbody tbody tr {
        transition: background 0.2s ease;
      }

      #vlb-desktop-events-tbody tbody tr:hover {
        background: #f9fafb;
      }

      #vlb-desktop-events-tbody tbody td {
        padding: 16px;
        border-bottom: 1px solid #f3f4f6;
        color: #111827;
      }

      #vlb-desktop-events-tbody tbody tr:last-child td {
        border-bottom: none;
      }

      /* Boutons d'action avec icônes */
      #vlb-desktop-events-tbody .vlb-edit-event-btn,
      #vlb-desktop-events-tbody .vlb-delete-event-btn {
        position: relative;
      }

      #vlb-desktop-events-tbody .vlb-edit-event-btn:hover::after,
      #vlb-desktop-events-tbody .vlb-delete-event-btn:hover::after {
        content: attr(title);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 8px;
        padding: 6px 10px;
        background: rgba(0, 0, 0, 0.85);
        color: #fff;
        font-size: 12px;
        border-radius: 6px;
        white-space: nowrap;
        pointer-events: none;
        z-index: 10;
      }

      #vlb-desktop-events-tbody .vlb-edit-event-btn:hover::after {
        content: 'Modifier';
      }

      #vlb-desktop-events-tbody .vlb-delete-event-btn:hover::after {
        content: 'Supprimer';
      }

      /* Formulaire dans la modale */
      #vlb-step-event-form {
        background: #fff;
        border-radius: 12px;
        padding: 24px;
      }

      #vlb-step-event-form .vlb-back-to-list {
        margin-bottom: 20px;
        transition: all 0.2s ease;
      }

      #vlb-step-event-form .vlb-back-to-list:hover {
        background: #4b5563;
        transform: translateX(-2px);
      }
    }

    /* Mobile - garder le style existant */
    @media (max-width: 1023px) {
      .vlb-modal {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
        align-items: center;
        justify-content: center;
      }

      .vlb-modal.active {
        display: flex;
      }

      .vlb-modal-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
      }

      .vlb-modal-content {
        position: relative;
        background: #fff;
        border-radius: 12px;
        max-width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        z-index: 1;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      }

      .vlb-modal-large {
        max-width: 600px;
        width: 100%;
      }

      .vlb-modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid #eee;
      }

      .vlb-modal-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
        color: #333;
      }

      .vlb-modal-close {
        background: none;
        border: none;
        font-size: 28px;
        line-height: 1;
        color: #666;
        cursor: pointer;
        padding: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .vlb-modal-close:hover {
        color: #000;
      }

      .vlb-modal-body {
        padding: 20px;
      }
    }

    .vlb-date-input,
    .vlb-select {
      width: 100%;
      padding: 12px;
      border: 2px solid #BD6089;
      border-radius: 8px;
      font-size: 16px;
      margin-bottom: 20px;
    }

    .vlb-modal-actions {
      display: flex;
      gap: 12px;
      justify-content: flex-end;
    }

    .vlb-btn-primary,
    .vlb-btn-outline {
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid #BD6089;
      transition: all 0.2s ease;
    }

    .vlb-btn-primary {
      background: #BD6089;
      color: #fff;
    }

    .vlb-btn-primary:hover {
      background: #a04d73;
    }

    .vlb-btn-outline {
      background: transparent;
      color: #BD6089;
    }

    .vlb-btn-outline:hover {
      background: #BD6089;
      color: #fff;
    }

    /* Onglets Connexion/Inscription */
    .vlb-auth-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 20px;
      border-bottom: 2px solid #eee;
    }

    .vlb-tab-btn {
      flex: 1;
      padding: 12px;
      background: transparent;
      border: none;
      border-bottom: 3px solid transparent;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      color: #666;
      transition: all 0.2s ease;
    }

    .vlb-tab-btn:hover {
      color: #BD6089;
    }

    .vlb-tab-btn.active {
      color: #BD6089;
      border-bottom-color: #BD6089;
    }

    .vlb-tab-content {
      display: none;
    }

    .vlb-tab-content.active {
      display: block;
    }

    /* Messages d'erreur/succès */
    .vlb-error-message {
      padding: 12px;
      background: #fee;
      border: 1px solid #fcc;
      border-radius: 6px;
      color: #c33;
      margin-bottom: 16px;
      font-size: 14px;
    }

    /* ============================================
       TOAST MESSAGES PREMIUM - ANIMÉS
       ============================================ */
    .vlb-toast-container {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      gap: 12px;
      pointer-events: none;
    }

    .vlb-toast {
      min-width: 320px;
      max-width: 420px;
      padding: 16px 20px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      gap: 12px;
      pointer-events: auto;
      animation: vlb-toast-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .vlb-toast::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: currentColor;
    }

    .vlb-toast-success {
      background: #fff;
      color: #10b981;
      border: 1px solid #d1fae5;
    }

    .vlb-toast-error {
      background: #fff;
      color: #ef4444;
      border: 1px solid #fee2e2;
    }

    .vlb-toast-info {
      background: #fff;
      color: #3b82f6;
      border: 1px solid #dbeafe;
    }

    .vlb-toast-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .vlb-toast-content {
      flex: 1;
      font-size: 14px;
      line-height: 1.5;
      font-weight: 500;
    }

    .vlb-toast-close {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border: none;
      background: transparent;
      color: currentColor;
      opacity: 0.6;
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s;
    }

    .vlb-toast-close:hover {
      opacity: 1;
    }

    @keyframes vlb-toast-slide-in {
      from {
        transform: translateX(100%);
        opacity: 0;
      }

      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes vlb-toast-slide-out {
      from {
        transform: translateX(0);
        opacity: 1;
      }

      to {
        transform: translateX(100%);
        opacity: 0;
      }
    }

    .vlb-toast.vlb-toast-exit {
      animation: vlb-toast-slide-out 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    /* ============================================
       SPINNERS & ÉTATS DE CHARGEMENT
       ============================================ */
    .vlb-spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(189, 96, 137, 0.2);
      border-top-color: #BD6089;
      border-radius: 50%;
      animation: vlb-spin 0.8s linear infinite;
    }

    .vlb-spinner-large {
      width: 32px;
      height: 32px;
      border-width: 4px;
    }

    @keyframes vlb-spin {
      to {
        transform: rotate(360deg);
      }
    }

    .vlb-btn-loading {
      position: relative;
      color: transparent !important;
      pointer-events: none;
    }

    .vlb-btn-loading::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 20px;
      height: 20px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: vlb-spin 0.8s linear infinite;
    }

    .vlb-form-loading {
      position: relative;
      pointer-events: none;
      opacity: 0.7;
    }

    .vlb-form-loading::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.8);
      z-index: 10;
      border-radius: 8px;
    }

    .vlb-form-loading::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 40px;
      height: 40px;
      border: 4px solid rgba(189, 96, 137, 0.2);
      border-top-color: #BD6089;
      border-radius: 50%;
      animation: vlb-spin 0.8s linear infinite;
      z-index: 11;
    }

    /* ============================================
       VALIDATION EN TEMPS RÉEL
       ============================================ */
    .vlb-field {
      position: relative;
    }

    /* Floating labels - ne pas cacher le contenu des inputs */
    .vlb-field label {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      transition: all 0.2s ease;
      color: #9ca3af;
      font-size: 14px;
      background: #fff;
      padding: 0 4px;
      z-index: 1;
    }

    .vlb-field textarea+label {
      top: 16px;
      transform: none;
    }

    /* Quand l'input a du contenu ou est en focus, déplacer le label vers le haut */
    .vlb-field input:focus+label,
    .vlb-field input:not(:placeholder-shown)+label,
    .vlb-field textarea:focus+label,
    .vlb-field textarea:not(:placeholder-shown)+label,
    .vlb-field select:focus+label,
    .vlb-field select:not([value=""])+label {
      top: 0;
      transform: translateY(-50%);
      font-size: 12px;
      color: #BD6089;
      background: #fff;
      z-index: 2;
    }

    .vlb-field textarea:focus+label,
    .vlb-field textarea:not(:placeholder-shown)+label {
      top: -8px;
      transform: none;
    }

    /* Ajuster le padding des inputs pour laisser de la place au label */
    .vlb-field input:not([type="date"]):not([type="time"]):not([type="url"]),
    .vlb-field textarea,
    .vlb-field select {
      padding-top: 16px !important;
      padding-bottom: 8px !important;
    }

    .vlb-field input:not([type="date"]):not([type="time"]):not([type="url"]):focus,
    .vlb-field textarea:focus,
    .vlb-field select:focus {
      padding-top: 16px !important;
      padding-bottom: 8px !important;
    }

    /* Pour les inputs URL qui ont déjà un placeholder visible */
    .vlb-field input[type="url"] {
      padding-top: 12px !important;
      padding-bottom: 12px !important;
    }

    .vlb-field input[type="url"]+label {
      display: none;
    }

    /* Pour les inputs date et time, ajuster différemment */
    .vlb-field input[type="date"]+label,
    .vlb-field input[type="time"]+label {
      top: 0;
      transform: translateY(-50%);
      font-size: 12px;
    }

    .vlb-field input[type="date"]:focus+label,
    .vlb-field input[type="date"]:not(:placeholder-shown)+label,
    .vlb-field input[type="time"]:focus+label,
    .vlb-field input[type="time"]:not(:placeholder-shown)+label {
      top: 0;
      transform: translateY(-50%);
    }

    .vlb-field-valid input,
    .vlb-field-valid textarea,
    .vlb-field-valid select {
      border-color: #10b981 !important;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
    }

    .vlb-field-invalid input,
    .vlb-field-invalid textarea,
    .vlb-field-invalid select {
      border-color: #ef4444 !important;
      box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
    }

    .vlb-field-valid::after {
      content: '✓';
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #10b981;
      font-size: 18px;
      font-weight: bold;
      pointer-events: none;
      z-index: 2;
    }

    .vlb-field-invalid::after {
      content: '✕';
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #ef4444;
      font-size: 18px;
      font-weight: bold;
      pointer-events: none;
      z-index: 2;
    }

    /* Ajuster pour les selects qui ont déjà une flèche */
    .vlb-field-valid select,
    .vlb-field-invalid select {
      padding-right: 50px !important;
    }

    /* Ajuster pour les champs texte/textarea */
    .vlb-field-valid input:not([type="date"]):not([type="time"]),
    .vlb-field-invalid input:not([type="date"]):not([type="time"]),
    .vlb-field-valid textarea,
    .vlb-field-invalid textarea {
      padding-right: 40px !important;
    }

    .vlb-field-error-message {
      display: block;
      margin-top: 6px;
      font-size: 12px;
      color: #ef4444;
      animation: vlb-fade-in 0.2s ease;
    }

    .vlb-field-success-message {
      display: block;
      margin-top: 6px;
      font-size: 12px;
      color: #10b981;
      animation: vlb-fade-in 0.2s ease;
    }

    @keyframes vlb-fade-in {
      from {
        opacity: 0;
        transform: translateY(-4px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Mobile : ajuster la taille des toasts */
    @media (max-width: 1023px) {
      .vlb-toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
      }

      .vlb-toast {
        min-width: auto;
        max-width: none;
        width: 100%;
      }
    }

    /* ============================================
       FORMULAIRE D'ÉVÉNEMENT - OPTIMISATION MOBILE
       ============================================ */
    @media (max-width: 1023px) {

      /* Formulaire dans le panel mobile - COMPACT */
      #vlb-mobile-step-event-form {
        padding: 0;
        overflow-y: auto;
        max-height: calc(100vh - 120px);
      }

      #vlb-mobile-step-event-form .vlb-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
      }

      /* Champs discrets */
      #vlb-mobile-step-event-form .vlb-field {
        width: 100%;
        margin-bottom: 0;
      }

      #vlb-mobile-step-event-form .vlb-field input,
      #vlb-mobile-step-event-form .vlb-field textarea,
      #vlb-mobile-step-event-form .vlb-field select {
        width: 100%;
        padding: 8px 12px;
        font-size: 14px;
        border: 1px solid #e5e7eb;
        border-radius: 6px;
        background: #fff;
        transition: border-color 0.2s ease;
      }

      #vlb-mobile-step-event-form .vlb-field input:focus,
      #vlb-mobile-step-event-form .vlb-field textarea:focus,
      #vlb-mobile-step-event-form .vlb-field select:focus {
        outline: none;
        border-color: #BD6089;
        box-shadow: 0 0 0 2px rgba(189, 96, 137, 0.1);
      }

      #vlb-mobile-step-event-form .vlb-field label {
        display: block;
        margin-bottom: 4px;
        font-size: 12px;
        font-weight: 500;
        color: #6b7280;
      }

      /* Rows en colonne sur mobile */
      #vlb-mobile-step-event-form .vlb-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      /* Exception : Téléphone et Email restent sur la même ligne sur mobile */
      #vlb-mobile-step-event-form .vlb-row:not(.vlb-row--two) {
        flex-direction: row;
      }

      #vlb-mobile-step-event-form .vlb-row:not(.vlb-row--two) .vlb-col {
        flex: 1 1 calc(50% - 5px);
        max-width: calc(50% - 5px);
        width: auto;
      }

      #vlb-mobile-step-event-form .vlb-row--two {
        flex-direction: column;
        gap: 10px;
      }

      #vlb-mobile-step-event-form .vlb-row--two .vlb-col {
        width: 100%;
      }

      /* Dates et heures SUR LA MÊME LIGNE */
      #vlb-mobile-step-event-form .vlb-inline {
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: flex-end;
      }

      #vlb-mobile-step-event-form .vlb-field--date {
        flex: 1.2;
        min-width: 0;
      }

      #vlb-mobile-step-event-form .vlb-field--time {
        flex: 0.8;
        min-width: 0;
      }

      /* Textarea description - COMPACT */
      #vlb-mobile-step-event-form .vlb-field textarea {
        min-height: 60px;
        max-height: 80px;
        resize: vertical;
        padding: 8px 12px;
        font-size: 14px;
      }

      /* Aide texte - DISCRET */
      #vlb-mobile-step-event-form .vlb-field p {
        font-size: 11px;
        color: #9ca3af;
        margin-top: 4px;
        line-height: 1.3;
      }

      /* Boutons d'action - COMPACT */
      #vlb-mobile-step-event-form .vlb-actions {
        display: flex;
        flex-direction: row;
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #e5e7eb;
      }

      #vlb-mobile-step-event-form .vlb-actions .vlb-btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
        text-align: center;
      }

      /* Bouton créer nouveau lieu/organisateur - DISCRET */
      #vlb-mobile-step-event-form .vlb-btn-outline {
        background: #fff;
        border: 1px solid #d1d5db;
        color: #6b7280;
        padding: 8px 12px;
        font-size: 13px;
      }

      #vlb-mobile-step-event-form .vlb-btn-outline:hover {
        background: #f9fafb;
        border-color: #BD6089;
        color: #BD6089;
      }

      /* Sections créations (lieu, organisateur) - COMPACT */
      #vlb-mobile-step-event-form #vlb-venue-create,
      #vlb-mobile-step-event-form #vlb-org-create {
        margin-top: 8px;
        padding: 10px;
        background: #f9fafb;
        border-radius: 6px;
        border: 1px solid #e5e7eb;
      }

      /* Select dropdown */
      #vlb-mobile-step-event-form select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%236b7280' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 32px;
      }

      /* Espacement relatif - COMPACT */
      #vlb-mobile-step-event-form .relative {
        margin-bottom: 0;
      }

      #vlb-mobile-step-event-form .relative .vlb-field {
        margin-bottom: 0;
      }
    }

    /* ============================================
       ANIMATION SPINNER DE CHARGEMENT
       ============================================ */
    @keyframes spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    /* Amélioration du chargement dans les conteneurs */
    #vlb-desktop-events-tbody,
    #vlb-mobile-events-tbody {
      transition: opacity 0.3s ease;
    }

    /* ============================================
       STYLES DES CARTES MINIATURES D'ÉVÉNEMENTS
       ============================================ */
    .vlb-events-grid .vlb-event-card-header {
      background: #BD6089;
      color: #fff;
      padding: 8px 12px !important;
      text-align: center;
      border-radius: 8px 8px 0 0;
    }

    .vlb-events-grid .vlb-event-venue-name {
      font-size: 11px !important;
      font-weight: 600;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .vlb-events-grid .vlb-event-icon {
      font-size: 14px;
    }

    .vlb-events-grid .vlb-event-card-body {
      background: #fff;
      padding: 16px !important;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .vlb-events-grid .vlb-event-title-miniature {
      font-size: 16px !important;
      font-weight: 600;
      color: #111827;
      margin-bottom: 8px !important;
      text-align: left !important;
      line-height: 1.4;
    }

    .vlb-events-grid .vlb-event-dates-miniature {
      font-size: 13px;
      color: #6b7280;
      margin-bottom: 12px;
      text-align: left;
    }

    .vlb-events-grid .vlb-event-date-separator {
      margin: 0 4px;
    }

    .vlb-events-grid .vlb-event-description-wrapper {
      margin-top: 8px;
    }

    .vlb-events-grid .vlb-event-description {
      font-size: 14px;
      color: #4b5563;
      line-height: 1.5;
      text-align: left;
    }

    /* Mobile : optimisations - styles principaux dans vlb-events.css */
    @media (max-width: 768px) {
      .tribe-events-pro-photo__event {
        list-style-type: none;
        padding: 0;
      }
    }

    /* Bouton "Créer un nouvel événement" - Discret avec icône */
    .vlb-new-event-btn {
      background: #10b981;
      color: #fff;
      padding: 10px 16px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .vlb-new-event-btn:hover {
      background: #059669;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .vlb-new-event-btn svg {
      flex-shrink: 0;
    }

    /* Mobile : juste l'icône avec tooltip */
    @media (max-width: 767px) {
      .vlb-new-event-btn {
        width: 44px;
        height: 44px;
        padding: 12px;
        border-radius: 50%;
        position: relative;
      }

      .vlb-new-event-btn .vlb-new-event-text {
        display: none;
      }
    }

    /* Boutons icônes sur mobile (sans tooltips) */
    @media (max-width: 1023px) {
      .vlb-mobile-icon-btn {
        position: relative;
        transition: transform 0.2s ease;
      }

      .vlb-mobile-icon-btn:active {
        transform: scale(0.95);
      }
    }

    /* Les styles du bouton externe sont dans vlb-events.css */
