/* ===== Sélecteur de Temps Modal ===== */

#time-selector-modal {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#time-selector-modal .bg-gray-800 {
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.time-option-btn {
  background-color: #e0d5bf;
  color: #7c4004;
  border: 2px solid #66bcb4;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.time-option-btn:hover {
  background-color: #66bcb4;
  border-color: #8ad2cc;
  color: #fbf3ea;
  transform: scale(1.05);
}

.time-option-btn:active {
  transform: scale(0.98);
}

.time-option-btn.selected,
.time-option-btn.bg-gradient-to-r {
  background: linear-gradient(to right, #ff9d00, #e08800) !important;
  color: white !important;
  border-color: #ff9d00 !important;
}
