/*
static/css/styles.css
Estilos base de Scriptorium con mejoras visuales seguras.
Arquitectura: Views/Assets.
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  color: #1f2937;
  min-height: 100vh;
}

.navbar-brand {
  letter-spacing: 0.04em;
  font-weight: 700;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.stat-card .h4 {
  margin-top: 0.4rem;
  margin-bottom: 0;
  font-weight: 700;
}

.idea-counter {
  font-size: 0.875rem;
}

pre {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.92rem;
}
