.btn.btn-primary {
    background-color: #E16E51;
    border-color: #E16E51;
    color: #fff;
    transition: all .3s ease;
}

select {
  height: 38px!important;
}

.auth-info {
  background: #DDDDDD;
  border-bottom: 4px solid #934D97;
  padding: 10px;
  margin: 0;          /* plus de centrage */
  width: 100%;        /* prend la largeur du conteneur */
  max-width: none;    /* enlève la limite */
  text-align: center;
}

.auth-info h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

/* ===============================
   VARIABLES
================================ */
:root {
  --primary: #9d489b;
  --secondary: #f36648;
  --bg: #f4f5f7;
  --text: #1f2933;
  --muted: #6b7280;
}

/* ===============================
   BASE
================================ */
body {
  background: var(--bg) !important;
}

#v-event-schedule {
  max-width: 1100px !important;
  margin: auto !important;
  padding: 30px !important;
  font-family: system-ui, -apple-system, sans-serif !important;
  color: var(--text) !important;
}

/* ===============================
   TITRE
================================ */
.zone-event_schedule h1 {
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  margin-bottom: 2rem !important;
}

/* ===============================
   DATE
================================ */
.date-pagination {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 3rem !important;
}

.current-date {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  color: white !important;

  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;

  padding: 12px 24px !important;
  border-radius: 999px !important;

  box-shadow: 0 10px 25px rgba(157,72,155,0.25) !important;
}

.next-date {
  font-size: 1.1rem !important;
  color: var(--muted) !important;
}

/* ===============================
   TIMELINE
================================ */
.time-block {
  position: relative !important;
  padding-left: 32px !important;
  margin-bottom: 3rem !important;
}

/* Ligne plus épaisse et visible */
.time-block::before {
  content: "" !important;
  position: absolute !important;
  left: 8px !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 3px !important;
  background: linear-gradient(var(--primary), var(--secondary)) !important;
}


/* Suppression du point */
.time-block::after {
  display: none !important;
}

/* ===============================
   HEADER BLOCS
================================ */
.time-block-header {
  margin-bottom: 1.5rem !important;
}

.time-block-header h3 {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.block-time {
  font-size: 1.4rem !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

/* ===============================
   LISTE
================================ */
.workshops {
  display: grid !important;
  gap: 1.3rem !important;
}

@media (min-width: 768px) {
  .workshops {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ===============================
   CARTES
================================ */
.workshop {
  display: block !important;
  background: white !important;

  padding: 1.6rem !important;
  border-radius: 16px !important;

  border: 1px solid #e5e7eb !important;
  text-decoration: none !important;

  transition: all 0.25s ease !important;
}

/* Hover plus premium */
.workshop:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
}

/* ===============================
   BADGE INSCRIT
================================ */
.registered-pill {
  color: white !important;
  background-color: green !important;
  border: none !important;
  padding: 5px 12px !important;

  font-size: 0.9rem !important;
  font-weight: 600 !important;
}

/* ===============================
   CARTE INSCRITE
================================ */
.workshop.registered {
  background: linear-gradient(
    135deg,
    rgba(157,72,155,0.06),
    rgba(243,102,72,0.06)
  ) !important;

  border-left: 6px solid var(--primary) !important;
  box-shadow: 0 8px 20px rgba(157,72,155,0.15) !important;
}

/* ===============================
   HEADER ACTIVITÉ
================================ */
.workshop-header {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;

  font-size: 1.05rem !important;
  color: #475569 !important;
  margin-bottom: 0.6rem !important;
}

/* ===============================
   TITRE ACTIVITÉ
================================ */
.workshop h5 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  margin-bottom: 0.7rem !important;
}

/* ===============================
   SPEAKERS
================================ */
.speakers {
  font-size: 1.1rem !important;
  color: var(--muted) !important;
  margin-bottom: 1rem !important;
}

/* ===============================
   ACTIONS
================================ */
.workshop-actions {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: 1rem !important;
}

.registration-action.remove {
  opacity: 1 !important;
  background: var(--secondary) !important;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.next-date, .previous-date {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;

  font-size: 1.3rem !important;
  font-weight: 600 !important;

  color: var(--primary) !important;

  padding: 6px 10px !important;
  border-radius: 8px !important;

  text-decoration: none !important;
  cursor: pointer !important;

  transition: all 0.2s ease !important;
}