/* Tailwind CSS minimal - Classes utilisées dans radioclock */

/* Reset minimal */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

/* Utilities */
.fixed { position: fixed; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flexbox */
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }

/* Spacing */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Padding */
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

/* Positioning */
.top-24 { top: 6rem; }
.right-8 { right: 2rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Z-index */
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[9999\] { z-index: 9999; }

/* Width/Height */
.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-xs { max-width: 20rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-\[98vw\] { max-width: 98vw; }

/* Borders */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.rounded { border-radius: 0.25rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* Colors */
.bg-black { background-color: rgb(0 0 0); }
.bg-black\/40 { background-color: rgb(0 0 0 / 0.4); }
.bg-neutral-900 { background-color: rgb(23 23 23); }
.bg-neutral-800 { background-color: rgb(38 38 38); }
.bg-neutral-900\/90 { background-color: rgb(23 23 23 / 0.9); }
.bg-neutral-900\/95 { background-color: rgb(23 23 23 / 0.95); }
.bg-cyan-600 { background-color: rgb(8 145 178); }
.bg-cyan-500 { background-color: rgb(6 182 212); }
.bg-cyan-700 { background-color: rgb(14 116 144); }
.bg-green-600 { background-color: rgb(22 163 74); }
.bg-green-700 { background-color: rgb(21 128 61); }
.bg-orange-600 { background-color: rgb(234 88 12); }
.bg-orange-700 { background-color: rgb(194 65 12); }
.bg-orange-500 { background-color: rgb(249 115 22); }
.bg-orange-400 { background-color: rgb(251 146 60); }
.bg-red-600 { background-color: rgb(220 38 38); }
.bg-red-700 { background-color: rgb(185 28 28); }
.bg-fuchsia-600 { background-color: rgb(192 38 211); }
.bg-fuchsia-500 { background-color: rgb(217 70 239); }
.bg-fuchsia-700 { background-color: rgb(162 28 175); }
.bg-emerald-600 { background-color: rgb(5 150 105); }
.bg-emerald-500 { background-color: rgb(16 185 129); }
.bg-emerald-700 { background-color: rgb(4 120 87); }

.border-neutral-600 { border-color: rgb(82 82 82); }
.border-neutral-700 { border-color: rgb(64 64 64); }
.border-cyan-400 { border-color: rgb(34 211 238); }
.border-red-500 { border-color: rgb(239 68 68); }
.border-green-500 { border-color: rgb(34 197 94); }

.text-white { color: rgb(255 255 255); }
.text-neutral-100 { color: rgb(245 245 245); }
.text-neutral-300 { color: rgb(212 212 212); }
.text-neutral-400 { color: rgb(163 163 163); }
.text-cyan-400 { color: rgb(34 211 238); }
.text-red-400 { color: rgb(248 113 113); }
.text-green-400 { color: rgb(74 222 128); }

/* Text */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }

/* Effects */
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.backdrop-blur { backdrop-filter: blur(8px); }

/* Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-cyan-900 { --tw-gradient-from: rgb(22 78 99); --tw-gradient-to: rgb(22 78 99 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-neutral-900 { --tw-gradient-to: rgb(23 23 23 / 0); --tw-gradient-stops: var(--tw-gradient-from), rgb(23 23 23), var(--tw-gradient-to); }
.to-fuchsia-900 { --tw-gradient-to: rgb(112 26 117); }

/* Interactive states */
.hover\:bg-cyan-500:hover { background-color: rgb(6 182 212); }
.hover\:bg-green-700:hover { background-color: rgb(21 128 61); }
.hover\:bg-orange-700:hover { background-color: rgb(194 65 12); }
.hover\:bg-orange-400:hover { background-color: rgb(251 146 60); }
.hover\:bg-red-700:hover { background-color: rgb(185 28 28); }
.hover\:bg-fuchsia-500:hover { background-color: rgb(217 70 239); }
.hover\:bg-emerald-500:hover { background-color: rgb(16 185 129); }

.active\:bg-cyan-700:active { background-color: rgb(14 116 144); }
.active\:bg-orange-600:active { background-color: rgb(234 88 12); }
.active\:bg-fuchsia-700:active { background-color: rgb(162 28 175); }
.active\:bg-emerald-700:active { background-color: rgb(4 120 87); }

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-cyan-400:focus { border-color: rgb(34 211 238); }

/* Form elements */
.accent-cyan-500 { accent-color: rgb(6 182 212); }
.scale-75 { transform: scale(0.75); }

/* Transition */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Specific width classes */
.w-\[370px\] { width: 370px; }

/* Misc */
.mx-auto { margin-left: auto; margin-right: auto; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.max-w-sm { max-width: 24rem; }
.gap-2 { gap: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.cursor-pointer { cursor: pointer; }
