/* =========================
   iCut – Booking Theme
   ========================= */

/* Generelle farver */
:root {
  --icut-bg: #efe2d3;
  --icut-accent: #c8955f;
  --icut-dark: #2f2f2f;
  --icut-light: #ffffff;
}

/* Baggrund */
div.ui-widget-content {
  background: var(--icut-bg) !important;
  border: none !important;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--icut-dark);
}

/* Overskrifter */
#events h3,
#eventForm h3,
#eventForm #start_date-block-container h3,
#eventForm #timeline-container h3 {
  color: var(--icut-dark);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Event cards */
#events .selectedEvent {
  background: var(--icut-light) !important;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Beskrivelser */
#events p.description,
#events div.description,
#events p.duration {
  color: #555;
  font-size: 14px;
}

/* Primær knap – Book */
#events input.reserve_time_btn,
#eventForm #save_button {
  background: var(--icut-accent) !important;
  color: white !important;
  border: none !important;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

#events input.reserve_time_btn:hover,
#eventForm #save_button:hover {
  background: #b07f4f !important;
  transform: translateY(-1px);
}

/* Sekundær knap */
#events input.select_another_btn {
  background: transparent !important;
  color: var(--icut-dark) !important;
  border: 1px solid var(--icut-dark) !important;
  border-radius: 999px;
  padding: 10px 24px;
}

/* Kalender header */
div.ui-widget-header {
  background: transparent !important;
  border: none !important;
  color: var(--icut-dark);
  font-weight: 500;
}

/* Timeline */
#timeline-container table.timeline {
  background: var(--icut-light);
  border-radius: 12px;
  overflow: hidden;
}

/* Ikke arbejdstid */
.timeline td.not_worked_time {
  background: #e6e6e6 !important;
}

/* Ledig tid */
.timeline td.free_time {
  background: #f7f2ec !important;
  cursor: pointer;
}

/* Valgt tid */
.timeline td.selected_time {
  background: var(--icut-accent) !important;
  color: white !important;
}

/* Reserveret tid */
.timeline td.reserved_time {
  background: #d3d3d3 !important;
}

/* Loading */
div#loading {
  background: rgba(255,255,255,0.8) !important;
}
