/* Gudnak Date & Time Picker Styles */
.dt-group { position: relative; }
.dt-display {
  width: 100%; padding: 10px 14px; background: rgba(20,24,37,0.8);
  border: 1px solid rgba(30,37,56,1); border-radius: 10px;
  color: #eaeff5; font-size: 0.9rem; cursor: pointer;
  transition: all 0.15s ease; font-family: inherit; display: flex; align-items: center;
  justify-content: space-between; box-sizing: border-box;
}
.dt-display:hover { border-color: rgba(40,48,74,1); }
.dt-display:focus, .dt-display.open { border-color: #4aedc4; box-shadow: 0 0 0 3px rgba(74,237,196,0.12); outline: none; }
.dt-display .placeholder, .dt-display-text.placeholder { color: #4f5b72; }
.dt-display svg { width: 16px; height: 16px; color: #4f5b72; flex-shrink: 0; }

.dt-panel {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; z-index: 60;
  background: #111520; border: 1px solid #28304a; border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5); padding: 16px; min-width: 260px;
}
@keyframes dtPanelIn { from { opacity:0; transform: translateY(-4px); } to { opacity:1; transform: translateY(0); } }
.dt-panel.open { display: block; animation: dtPanelIn 0.12s ease; }

/* Calendar */
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-header button { background: none; border: none; color: #8a94a8; cursor: pointer; padding: 4px 8px; border-radius: 6px; transition: all 0.12s; font-size: 1rem; }
.cal-header button:hover { background: rgba(74,237,196,0.08); color: #eaeff5; }
.cal-month { font-size: 0.88rem; font-weight: 700; color: #eaeff5; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal-day-label { font-size: 0.6rem; font-weight: 700; color: #4f5b72; text-transform: uppercase; padding: 4px 0; }
.cal-day {
  padding: 6px 0; font-size: 0.82rem; border-radius: 8px; cursor: pointer;
  color: #8a94a8; transition: all 0.1s;
}
.cal-day:hover { background: rgba(74,237,196,0.08); color: #eaeff5; }
.cal-day.today { color: #4aedc4; font-weight: 700; }
.cal-day.selected { background: #4aedc4; color: #0a0c10; font-weight: 700; }
.cal-day.selected:hover { background: #6ff5d6; }
.cal-day.other-month { color: rgba(255,255,255,0.08); cursor: default; }
.cal-day.other-month:hover { background: transparent; color: rgba(255,255,255,0.08); }
.cal-day.past { color: rgba(255,255,255,0.12); cursor: default; }
.cal-day.past:hover { background: transparent; color: rgba(255,255,255,0.12); }

/* Time slots */
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.time-slot {
  padding: 8px 4px; text-align: center; font-size: 0.78rem; border-radius: 8px;
  color: #8a94a8; cursor: pointer; transition: all 0.1s; font-weight: 500;
}
.time-slot:hover { background: rgba(74,237,196,0.08); color: #eaeff5; }
.time-slot.selected { background: #4aedc4; color: #0a0c10; font-weight: 700; }
.time-section-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #4f5b72; margin: 10px 0 6px; }
