/*! tailwind-static.css — standalone Tailwind replacement */

/* ===================================================================
   1. PREFLIGHT / RESET (minimal)
   =================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e2e8f0; /* slate-200 */
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

p, figure, blockquote, pre, hr {
  margin: 0;
  padding: 0;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  margin: 0;
  padding: 0;
  text-align: inherit;
}

code, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

details {
  display: block;
}

summary {
  display: list-item;
}

input, textarea, select, button {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  background-color: transparent;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #94a3b8; /* slate-400 */
}


/* ===================================================================
   2. LAYOUT / DISPLAY
   =================================================================== */

.block        { display: block; }
.hidden       { display: none; }
.inline-block { display: inline-block; }
.inline-flex  { display: inline-flex; }
.flex         { display: flex; }
.grid         { display: grid; }


/* ===================================================================
   3. POSITION
   =================================================================== */

.absolute { position: absolute; }
.relative { position: relative; }


/* ===================================================================
   4. FLEXBOX
   =================================================================== */

.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-1         { flex: 1 1 0%; }
.flex-col       { flex-direction: column; }
.flex-shrink-0  { flex-shrink: 0; }
.flex-wrap      { flex-wrap: wrap; }
.self-start     { align-self: flex-start; }


/* ===================================================================
   5. OBJECT / OVERFLOW / INTERACTION
   =================================================================== */

.object-cover    { object-fit: cover; }
.overflow-hidden { overflow: hidden; }
.select-none     { user-select: none; }
.cursor-pointer  { cursor: pointer; }
.resize-y        { resize: vertical; }
.whitespace-nowrap { white-space: nowrap; }


/* ===================================================================
   6. SIZING — widths
   =================================================================== */

.w-full  { width: 100%; }
.w-auto  { width: auto; }
.w-1\.5  { width: 0.375rem; }  /* 6px  */
.w-3     { width: 0.75rem; }   /* 12px */
.w-3\.5  { width: 0.875rem; }  /* 14px */
.w-4     { width: 1rem; }      /* 16px */
.w-5     { width: 1.25rem; }   /* 20px */
.w-10    { width: 2.5rem; }    /* 40px */
.w-32    { width: 8rem; }      /* 128px */
.w-44    { width: 11rem; }     /* 176px */


/* ===================================================================
   7. SIZING — heights
   =================================================================== */

.h-full  { height: 100%; }
.h-1\.5  { height: 0.375rem; }
.h-3     { height: 0.75rem; }
.h-3\.5  { height: 0.875rem; }
.h-4     { height: 1rem; }
.h-5     { height: 1.25rem; }
.h-7     { height: 1.75rem; }
.h-8     { height: 2rem; }
.h-9     { height: 2.25rem; }
.h-10    { height: 2.5rem; }


/* ===================================================================
   8. SIZING — min / max
   =================================================================== */

.min-h-\[100px\] { min-height: 100px; }

.max-w-none { max-width: none; }
.max-w-lg   { max-width: 32rem; }   /* 512px */
.max-w-3xl  { max-width: 48rem; }   /* 768px */
.max-w-5xl  { max-width: 64rem; }   /* 1024px */
.max-w-6xl  { max-width: 72rem; }   /* 1152px */


/* ===================================================================
   9. SPACING — margin
   =================================================================== */

.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2    { margin-left: 0.5rem; margin-right: 0.5rem; }
.my-8    { margin-top: 2rem; margin-bottom: 2rem; }
.ml-2    { margin-left: 0.5rem; }
.mr-3    { margin-right: 0.75rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1    { margin-top: 0.25rem; }
.mt-2    { margin-top: 0.5rem; }
.mt-3    { margin-top: 0.75rem; }
.mt-4    { margin-top: 1rem; }
.mt-6    { margin-top: 1.5rem; }
.mt-10   { margin-top: 2.5rem; }
.mt-12   { margin-top: 3rem; }

.mb-1    { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2    { margin-bottom: 0.5rem; }
.mb-3    { margin-bottom: 0.75rem; }
.mb-4    { margin-bottom: 1rem; }
.mb-5    { margin-bottom: 1.25rem; }
.mb-6    { margin-bottom: 1.5rem; }
.mb-8    { margin-bottom: 2rem; }
.mb-10   { margin-bottom: 2.5rem; }
.mb-12   { margin-bottom: 3rem; }


/* ===================================================================
   10. SPACING — padding
   =================================================================== */

.p-0\.5  { padding: 0.125rem; }
.p-2\.5  { padding: 0.625rem; }
.p-4     { padding: 1rem; }
.p-5     { padding: 1.25rem; }
.p-6     { padding: 1.5rem; }
.p-8     { padding: 2rem; }

.px-2    { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3    { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4    { padding-left: 1rem; padding-right: 1rem; }
.px-5    { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6    { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8    { padding-left: 2rem; padding-right: 2rem; }

.py-1    { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3    { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4    { padding-top: 1rem; padding-bottom: 1rem; }
.py-5    { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6    { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8    { padding-top: 2rem; padding-bottom: 2rem; }
.py-10   { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12   { padding-top: 3rem; padding-bottom: 3rem; }
.py-16   { padding-top: 4rem; padding-bottom: 4rem; }

.pb-4    { padding-bottom: 1rem; }
.pl-2    { padding-left: 0.5rem; }
.pt-8    { padding-top: 2rem; }


/* ===================================================================
   11. SPACING — gap
   =================================================================== */

.gap-1\.5 { gap: 0.375rem; }
.gap-2    { gap: 0.5rem; }
.gap-3    { gap: 0.75rem; }
.gap-4    { gap: 1rem; }


/* ===================================================================
   12. SPACING — space-y (lobotomised owl)
   =================================================================== */

.space-y-2 > :not(:first-child)  { margin-top: 0.5rem; }
.space-y-3 > :not(:first-child)  { margin-top: 0.75rem; }
.space-y-4 > :not(:first-child)  { margin-top: 1rem; }
.space-y-6 > :not(:first-child)  { margin-top: 1.5rem; }
.space-y-10 > :not(:first-child) { margin-top: 2.5rem; }
.space-y-12 > :not(:first-child) { margin-top: 3rem; }


/* ===================================================================
   13. GRID
   =================================================================== */

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


/* ===================================================================
   14. TYPOGRAPHY — font weight
   =================================================================== */

.font-light     { font-weight: 300; }
.font-medium    { font-weight: 500; }
.font-semibold  { font-weight: 600; }
.font-bold      { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black     { font-weight: 900; }


/* ===================================================================
   15. TYPOGRAPHY — font size
   =================================================================== */

.text-xs   { font-size: 0.75rem;  line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem;     line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem;  line-height: 2.5rem; }
.text-5xl  { font-size: 3rem;     line-height: 1; }
.text-6xl  { font-size: 3.75rem;  line-height: 1; }
.text-\[8rem\] { font-size: 8rem; line-height: 1; }


/* ===================================================================
   16. TYPOGRAPHY — alignment
   =================================================================== */

.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }


/* ===================================================================
   17. TYPOGRAPHY — line-height
   =================================================================== */

.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }


/* ===================================================================
   18. TYPOGRAPHY — letter-spacing
   =================================================================== */

.tracking-tight  { letter-spacing: -0.025em; }
.tracking-wider  { letter-spacing: 0.05em; }


/* ===================================================================
   19. TYPOGRAPHY — text-transform
   =================================================================== */

.uppercase { text-transform: uppercase; }


/* ===================================================================
   20. TYPOGRAPHY — line clamp
   =================================================================== */

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


/* ===================================================================
   21. TYPOGRAPHY — placeholder
   =================================================================== */

.placeholder-slate-400::placeholder {
  color: #94a3b8;
}


/* ===================================================================
   22. TYPOGRAPHY — list style
   =================================================================== */

.list-disc    { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.list-inside  { list-style-position: inside; }


/* ===================================================================
   23. COLORS — text
   =================================================================== */

.text-white       { color: #ffffff; }
.text-transparent { color: transparent; }
.text-slate-300   { color: #cbd5e1; }
.text-slate-400   { color: #94a3b8; }
.text-slate-500   { color: #64748b; }
.text-slate-600   { color: #475569; }
.text-slate-700   { color: #334155; }
.text-slate-800   { color: #1e293b; }
.text-slate-900   { color: #0f172a; }
.text-blue-500    { color: #3b82f6; }
.text-blue-600    { color: #2563eb; }
.text-blue-700    { color: #1d4ed8; }
.text-emerald-700 { color: #047857; }
.text-red-700     { color: #b91c1c; }
.text-amber-500   { color: #f59e0b; }


/* ===================================================================
   24. COLORS — background
   =================================================================== */

.bg-white       { background-color: #ffffff; }
.bg-slate-50    { background-color: #f8fafc; }
.bg-slate-100   { background-color: #f1f5f9; }
.bg-slate-200   { background-color: #e2e8f0; }
.bg-slate-800   { background-color: #1e293b; }
.bg-blue-100    { background-color: #dbeafe; }
.bg-blue-500    { background-color: #3b82f6; }
.bg-blue-600    { background-color: #2563eb; }
.bg-emerald-50  { background-color: #ecfdf5; }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-emerald-500 { background-color: #10b981; }
.bg-red-50      { background-color: #fef2f2; }
.bg-red-400     { background-color: #f87171; }
.bg-amber-400   { background-color: #fbbf24; }
.bg-transparent { background-color: transparent; }


/* ===================================================================
   25. GRADIENTS
   =================================================================== */

.bg-gradient-to-r  { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }

.from-blue-50  { --tw-gradient-from: #eff6ff; --tw-gradient-to: rgb(239 246 255 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-to: rgb(59 130 246 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-blue-600 { --tw-gradient-from: #2563eb; --tw-gradient-to: rgb(37 99 235 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.via-indigo-500 {
  --tw-gradient-to: rgb(99 102 241 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to);
}

.to-indigo-50  { --tw-gradient-to: #eef2ff; }
.to-indigo-600 { --tw-gradient-to: #4f46e5; }
.to-purple-600 { --tw-gradient-to: #9333ea; }

.bg-clip-text { -webkit-background-clip: text; background-clip: text; }


/* ===================================================================
   26. BORDERS — width & sides
   =================================================================== */

.border   { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }


/* ===================================================================
   27. BORDERS — color
   =================================================================== */

.border-slate-100  { border-color: #f1f5f9; }
.border-slate-200  { border-color: #e2e8f0; }
.border-slate-300  { border-color: #cbd5e1; }
.border-blue-200   { border-color: #bfdbfe; }
.border-blue-300   { border-color: #93c5fd; }
.border-blue-500   { border-color: #3b82f6; }
.border-emerald-200 { border-color: #a7f3d0; }
.border-red-200    { border-color: #fecaca; }


/* ===================================================================
   28. BORDERS — radius
   =================================================================== */

.rounded      { border-radius: 0.25rem; }
.rounded-lg   { border-radius: 0.5rem; }
.rounded-xl   { border-radius: 0.75rem; }
.rounded-2xl  { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }


/* ===================================================================
   29. BORDERS — divide
   =================================================================== */

.divide-y > :not(:first-child) {
  border-top-width: 1px;
}

.divide-slate-100 > :not(:first-child) {
  border-color: #f1f5f9;
}


/* ===================================================================
   30. EFFECTS — shadow
   =================================================================== */

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.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-blue-500\/20 {
  --tw-shadow-color: rgb(59 130 246 / 0.2);
  box-shadow: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
}


/* ===================================================================
   31. EFFECTS — opacity
   =================================================================== */

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }


/* ===================================================================
   32. EFFECTS — blur
   =================================================================== */

.blur-sm {
  filter: blur(4px);
}


/* ===================================================================
   33. EFFECTS — ring
   =================================================================== */

.ring-2 {
  box-shadow: 0 0 0 2px var(--tw-ring-color, #3b82f6);
}

.ring-blue-100 {
  --tw-ring-color: #dbeafe;
}


/* ===================================================================
   34. TRANSFORMS
   =================================================================== */

.-translate-x-1\/2 { transform: translateX(-50%); }
.-bottom-2         { bottom: -0.5rem; }
.-bottom-8         { bottom: -2rem; }
.left-1\/2         { left: 50%; }


/* ===================================================================
   35. TRANSITIONS
   =================================================================== */

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}


/* ===================================================================
   36. HOVER STATES
   =================================================================== */

.hover\:bg-blue-50:hover   { background-color: #eff6ff; }
.hover\:bg-blue-700:hover  { background-color: #1d4ed8; }
.hover\:bg-slate-50:hover  { background-color: #f8fafc; }

.hover\:border-blue-200:hover    { border-color: #bfdbfe; }
.hover\:border-blue-300:hover    { border-color: #93c5fd; }
.hover\:border-emerald-300:hover { border-color: #6ee7b7; }
.hover\:border-slate-300:hover   { border-color: #cbd5e1; }

.hover\:text-blue-600:hover  { color: #2563eb; }
.hover\:text-blue-800:hover  { color: #1e40af; }
.hover\:text-slate-800:hover { color: #1e293b; }
.hover\:text-slate-900:hover { color: #0f172a; }

.hover\:shadow-sm:hover {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.hover\:shadow-blue-500\/30:hover {
  box-shadow: 0 10px 15px -3px rgb(59 130 246 / 0.3), 0 4px 6px -4px rgb(59 130 246 / 0.3);
}

.hover\:underline:hover { text-decoration-line: underline; }

.hover\:from-blue-700:hover {
  --tw-gradient-from: #1d4ed8;
  --tw-gradient-to: rgb(29 78 216 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:to-indigo-700:hover {
  --tw-gradient-to: #4338ca;
}


/* ===================================================================
   37. FOCUS STATES
   =================================================================== */

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:border-blue-500:focus {
  border-color: #3b82f6;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--tw-ring-color, #3b82f6);
}

.focus\:ring-blue-500:focus {
  --tw-ring-color: #3b82f6;
}

.focus\:ring-offset-2:focus {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--tw-ring-color, #3b82f6);
}


/* ===================================================================
   38. GROUP STATES
   =================================================================== */

/* The .group class itself has no styles — it is a marker */
.group { /* marker */ }

.group:hover .group-hover\:opacity-80 {
  opacity: 0.8;
}

.group:hover .group-hover\:text-blue-600 {
  color: #2563eb;
}

.group[open] .group-open\:rotate-180 {
  transform: rotate(180deg);
}


/* ===================================================================
   39. UTILITY — alignment
   =================================================================== */

.align-middle { vertical-align: middle; }


/* ===================================================================
   40. RESPONSIVE — sm (≥640px)
   =================================================================== */

@media (min-width: 640px) {
  .sm\:block     { display: block; }
  .sm\:inline    { display: inline; }
  .sm\:flex-row  { flex-direction: row; }
  .sm\:w-auto    { width: auto; }

  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .sm\:text-sm       { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base     { font-size: 1rem;     line-height: 1.5rem; }
  .sm\:text-2xl      { font-size: 1.5rem;   line-height: 2rem; }
  .sm\:text-3xl      { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl      { font-size: 2.25rem;  line-height: 2.5rem; }
  .sm\:text-5xl      { font-size: 3rem;     line-height: 1; }
  .sm\:text-8xl      { font-size: 6rem;     line-height: 1; }
  .sm\:text-\[10rem\] { font-size: 10rem;   line-height: 1; }

  .sm\:p-6  { padding: 1.5rem; }
  .sm\:p-8  { padding: 2rem; }
  .sm\:p-12 { padding: 3rem; }

  .sm\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .sm\:py-16 { padding-top: 4rem;   padding-bottom: 4rem; }

  .sm\:gap-5 { gap: 1.25rem; }
  .sm\:gap-6 { gap: 1.5rem; }
}


/* ===================================================================
   41. RESPONSIVE — lg (≥1024px)
   =================================================================== */

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


/* ===================================================================
   42. RESPONSIVE — xl (≥1280px)
   =================================================================== */

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}


/* ===================================================================
   43. PRINT
   =================================================================== */

@media print {
  .no-print { display: none !important; }
}


/* ===================================================================
   44. MISSING UTILITIES
   =================================================================== */

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.min-h-screen { min-height: 100vh; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }

@media (min-width: 640px) {
  .sm\:h-9 { height: 2.25rem; }
}


/* ===================================================================
   45. CALENDAR & APP.JS UTILITIES
   =================================================================== */

/* Grid */
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.col-span-full { grid-column: 1 / -1; }
.gap-y-0\.5 { row-gap: 0.125rem; }

/* Sizing */
.w-7 { width: 1.75rem; }
.h-7 { height: 1.75rem; }
.leading-7 { line-height: 1.75rem; }

/* Spacing */
.p-3 { padding: 0.75rem; }

/* Border radius */
.rounded-md { border-radius: 0.375rem; }

/* Cursor */
.cursor-default { cursor: default; }

/* Colors — app.js status cards */
.bg-amber-100 { background-color: #fef3c7; }
.bg-red-100   { background-color: #fee2e2; }

.text-emerald-600 { color: #059669; }
.text-emerald-800 { color: #065f46; }
.text-red-600     { color: #dc2626; }
.text-red-800     { color: #991b1b; }
.text-amber-700   { color: #b45309; }

/* Ring */
.ring-blue-500 { --tw-ring-color: #3b82f6; }

/* Arbitrary — text-[10px] */
.text-\[10px\] { font-size: 10px; }

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.4s ease-out both; }

@media (min-width: 640px) {
  .sm\:p-4  { padding: 1rem; }
}
