:root {
  --honda-red: #E31837;
  --honda-dark: #212529;
  --soft-gray: #f8f9fa;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f2f5;
  color: var(--honda-dark);
}

.card-custom {
  border: none;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-header-honda {
  background-color: var(--honda-red);
  padding: 2.5rem 1rem;
  text-align: center;
  color: white;
  border: none;
}

.form-control, .form-select {
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  border-radius: 12px;
  border: 1px solid #dee2e6;
  transition: all 0.3s;
  cursor: pointer;
}

.form-control:focus, .form-select:focus {
  border-color: var(--honda-red);
  box-shadow: 0 0 0 0.25rem rgba(227, 24, 55, 0.1);
}

.input-group-custom {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group-custom i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  z-index: 10;
  pointer-events: none;
}

/* DATE SLIDER STYLES */

.date-slider-container {
  position: relative;
  width: 100%;
}

.date-slider {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 5px 0 15px 0;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.date-slider::-webkit-scrollbar {
  display: none;
}

.date-card {
  flex: 0 0 auto;
  width: 75px;
  height: 90px;
  border-radius: 16px;
  border: 1px solid #dee2e6;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.date-card:hover {
  border-color: #fca5a5;
  background-color: #fff5f5;
  transform: translateY(-2px);
}

.date-card.active {
  background-color: var(--honda-red);
  border-color: var(--honda-red);
  color: white;
  box-shadow: 0 6px 12px rgba(227, 24, 55, 0.25);
  transform: translateY(-4px);
}

.date-card .day {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #adb5bd;
  margin-bottom: 2px;
  transition: 0.3s;
}

.date-card.active .day {
  color: rgba(255, 255, 255, 0.8);
}

.date-card .date {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.date-card .month {
  font-size: 0.7rem;
  font-weight: 500;
}

.date-card.sunday .day {
  color: var(--honda-red);
}

.date-card.active.sunday .day {
  color: white;
}

.btn-honda {
  background-color: var(--honda-red);
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-honda:hover {
  background-color: #c1142d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 24, 55, 0.3);
}

.custom-checkbox .form-check-input:checked {
  background-color: var(--honda-red);
  border-color: var(--honda-red);
}

.message-box {
  display: none;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
}

.btn-reload {
  width: 100%;
  max-width: 250px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-reload:hover {
  background-color: #e2e6ea;
  transform: translateY(-1px);
}

