/*
 * Fit Me Admin — Warm Palette Override
 *
 * Light: base sobre #FAFAF8, superficies en #F5F2ED
 * Dark:  base sobre #141210, superficies en #1C1A17
 */

/* ── Light mode: base ───────────────────────────────────────────────────── */
body {
  background-color: #F5F2ED !important;
}

html:not(.dark) [class~="bg-white"] {
  background-color: #FAFAF8 !important;
}

html:not(.dark) [class~="bg-gray-50"] {
  background-color: #F0ECE4 !important;
}

html:not(.dark) [class~="bg-gray-100"] {
  background-color: #E8E2D8 !important;
}

/* ── Dark mode: base ─────────────────────────────────────────────────────── */
html.dark body,
html.dark [class~="bg-gray-950"] {
  background-color: #141210 !important;
}

html.dark [class~="bg-white"] {
  background-color: #1C1A17 !important;
}

html.dark [class~="bg-gray-900"] {
  background-color: #1C1A17 !important;
}

html.dark [class~="bg-gray-800"] {
  background-color: #252320 !important;
}

html.dark [class~="bg-gray-50"] {
  background-color: #1C1A17 !important;
}

html.dark [class~="bg-gray-100"] {
  background-color: #252320 !important;
}

/* ── Bordes en dark ─────────────────────────────────────────────────────── */
html.dark [class~="border-gray-200"] {
  border-color: #2B2825 !important;
}

html.dark [class~="border-gray-100"] {
  border-color: #222018 !important;
}

html.dark [class~="divide-gray-200"] > * + * {
  border-color: #2B2825 !important;
}
