/* Styles du calendrier du jour - version image */
.lt-calendar-day-root {
  background: #ffffff;
 
  padding: 0;
  font-family: 'Exo 2', sans-serif;
}

/* Container de la liste */
.lt-day-list {
  padding: 0;
}

/* Élément d'émission */
.lt-show-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s;
}

.lt-show-item:last-child {
  border-bottom: none;
}

.lt-show-item:hover {
  background-color: #f8f9fa;
}

/* Colonne horaire */
.lt-time-column {
  min-width: 80px;
  margin-right: 20px;
  text-align: center;
}

.lt-start-time,
.lt-end-time {
  font-weight: 700;
  color: #4A4A4A;
  font-size: 0.95rem;
  line-height: 1.3;
}

.lt-start-time {
  margin-bottom: 2px;
}

.lt-end-time {
  color: #7f8c8d;
  font-size: 0.85rem;
}

/* Colonne contenu */
.lt-content-column {
  flex: 1;
}

.lt-show-title {
  font-size: 1.1rem;
  color: #4A4A4A;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
}

.lt-show-desc {
  color: #7f8c8d;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* État actuel (en cours) */
.lt-show-item.lt-current {
  background: #4A4A4A;
  border-bottom-color: #4A4A4A;
}

.lt-show-item.lt-current .lt-start-time,
.lt-show-item.lt-current .lt-end-time,
.lt-show-item.lt-current .lt-show-title {
  color: #ffffff;
}

.lt-show-item.lt-current .lt-show-desc {
  color: #bdc3c7;
}

/* États vides et erreurs */
.lt-none, 
.lt-error, 
.lt-loading {
  padding: 40px 20px;
  text-align: center;
  font-family: 'Exo 2', sans-serif;
}

.lt-none {
  color: #7f8c8d;
  font-style: italic;
}

.lt-error {
  color: #e74c3c;
}

.lt-loading {
  color: #3498db;
}

/* Responsive */
@media (max-width: 576px) {
  .lt-show-item {
    padding: 12px;
    flex-direction: column;
  }
  
  .lt-time-column {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .lt-start-time,
  .lt-end-time {
    font-size: 0.9rem;
  }
}