/* ── IMAGEN DE FONDO LOGIN ─────────────────────────────────────── */
.relative.hidden.bg-muted img,
img[src*="favicon"][class*="absolute"] {
  content: url("/public/edificio.jpg") !important;
  object-fit: cover !important;
}

/* ── LOGO EN LOGIN ─────────────────────────────────────────────── */
img.logo {
  display: none !important;
}
div:has(> img.logo) {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 80px !important;
}
div:has(> img.logo)::before {
  content: "";
  display: block;
  width: 240px;
  height: 80px;
  background-image: url("/public/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── OCULTAR HEADER ORIGINAL DE CHAINLIT ───────────────────────── */
header:not(#forta-header) {
  display: none !important;
}

/* ── COLORES BASE ──────────────────────────────────────────────── */
:root {
  --color-background: #111113;
  --color-surface: #18181b;
}

/* ── BOTÓN ENVIAR ──────────────────────────────────────────────── */
button[type="submit"] {
  background-color: #ff1b6b !important;
}
button[type="submit"]:hover {
  background-color: #e8005e !important;
}

/* ── INPUT CHAT ────────────────────────────────────────────────── */
#chat-input {
  border-radius: 12px !important;
  border: 1px solid rgba(255, 27, 107, 0.2) !important;
}
#chat-input:focus-within {
  border-color: #ff1b6b !important;
  box-shadow: 0 0 0 3px rgba(255, 27, 107, 0.12) !important;
}

/* ── MENSAJES DEL ASISTENTE ────────────────────────────────────── */
[data-testid="assistant-message"] .message-container {
  border-left: 3px solid #ff1b6b;
}

/* ── OCULTAR WATERMARK ─────────────────────────────────────────── */
[class*="watermark"],
[data-testid="watermark"],
footer,
div[class*="footer"] p {
  display: none !important;
}

/* ── SCROLLBAR ─────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 27, 107, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 27, 107, 0.6);
}
