.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Calendar styles */
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
  margin-bottom: 20px;
}

.calendar-day {
  padding: 8px;
  cursor: pointer;
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.calendar-day:hover:not(.disabled) {
  background-color: rgba(17, 125, 212, 0.1);
}

.calendar-day.disabled {
  background-color: #f1f5f9;
  color: #94a3b8;
  pointer-events: none;
  cursor: not-allowed;
}

.calendar-day.available {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.calendar-day.confirmed {
  background-color: #117dd4;
  color: white;
  border: 2px solid #0d6abf;
  font-weight: 700;
}

.calendar-day.selected {
  background-color: #117dd4;
  color: white;
}

.calendar-header {
  font-weight: 700;
  font-size: 0.75rem;
  color: #4c779a;
  padding: 8px;
}

/* SVG Logo */
.logo-svg {
  width: 32px;
  height: 32px;
  color: #117dd4;
}

/* Sidebar active link */
.sidebar-link-active {
  background-color: rgba(17, 125, 212, 0.15);
  font-weight: 700;
}

/* Scrollbar minimal */
.scrollbar-thin::-webkit-scrollbar {
  width: 4px;
}
.scrollbar-thin::-webkit-scrollbar-track {
  background: transparent;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 9999px;
}

/* Time slot styles */
.time-slot {
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
  background: white;
}
.time-slot:hover {
  border-color: #117dd4;
  background-color: rgba(17, 125, 212, 0.05);
}
.time-slot.selected {
  background-color: #117dd4;
  color: white;
  border-color: #117dd4;
}
.time-slot.disabled {
  background-color: #f1f5f9;
  color: #94a3b8;
  pointer-events: none;
}

/* Appointment card */
.turno-card {
  border-left: 4px solid #117dd4;
}
.turno-card-past {
  border-left: 4px solid #94a3b8;
  opacity: 0.7;
}

/* Alert styles */
.alert-success-custom {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #166534;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
}
.alert-danger-custom {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #991b1b;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
}
.alert-info-custom {
  background-color: rgba(17, 125, 212, 0.1);
  border: 1px solid rgba(17, 125, 212, 0.3);
  color: #0d151b;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
}
