/* Vue screen transitions */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.2s ease;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

/* Dark date picker - fixes iOS Safari white background */
input[type="date"] {
  color-scheme: dark;
  -webkit-appearance: none;
  appearance: none;
}

/* Slider thumb accent color */
input[type="range"] {
  accent-color: #e67e22;
}

/* Hide scrollbar on scrollable containers */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Date strip small text labels (replaces arbitrary Tailwind values) */
.text-strip-weekday { font-size: 0.6rem; }
.text-strip-today   { font-size: 0.55rem; }

/* Cycle strip labels - short labels need tight sizing */
.cycle-seg {
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.6rem;
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  body {
    background: radial-gradient(ellipse at 50% 25%, #1a1018 0%, #0a0a0a 70%);
  }

  #app {
    margin-top: 2rem;
    margin-bottom: 2rem;
    min-height: calc(100vh - 4rem);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.8),
      0 0 0 1px rgba(255, 255, 255, 0.06);
  }
}
