:root {
  --secondary: #222e51;
  --secondary-2: #3c4d7e;
  --bg: #f5f6f8;
  --card: #FFFfff;
  --muted: #afafaf;
  --border: #e1e4ea;
  --accent: #2766ff;
  --accent-2: #1f58e6;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --radius: 18px;
}

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer.site-footer {
  margin-top: auto;
}

.app-header {
  color: #fafbfe;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.app-header .header-title {
  color: #fafbfe;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
  margin-right: 0.55rem;
}

.nav-link {
  color: #5b616b;
}
.nav-link:hover {
  color: #111827;
}

.btn-primary {
  background: var(--secondary);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: var(--secondary-2);
  border-color: var(--secondary-2);
}

.btn-outline-dark {
  border-color: var(--border);
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--card);
}

.muted {
  color: var(--muted);
}

.dropzone {
  border: 2px dashed #cfd5df;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  background: #FFF;
  cursor: pointer;
  transition: 0.15s ease;
  user-select: none;
}
.dropzone.dragover {
  border-color: rgba(39, 102, 255, 0.65);
  background: rgba(39, 102, 255, 0.05);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: #111827;
  font-size: 0.85rem;
}

.kpi {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 14px;
  background: #FFF;
  height: 100%;
}
.kpi .label {
  font-size: 0.85rem;
  color: var(--muted);
}
.kpi .value {
  font-size: 1.05rem;
  font-weight: 800;
}

.table thead th {
  color: #5b616b;
  font-weight: 700;
}
.table td,
.table th {
  vertical-align: middle;
}

.progress {
  background: #eef1f6;
}
.progress .progress-bar {
  background: var(--accent);
}

.section-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.maxw {
  max-width: 1200px;
}

.hint-card {
  border: 1px dashed #cfd5df;
  border-radius: 16px;
  padding: 12px 14px;
  background: #fcfdff;
}

footer.site-footer {
  border-top: 1px solid var(--border);
  background: #222e51;
}
footer.site-footer .footer-link {
  color: #fafbfe;
  text-decoration: none;
}
footer.site-footer .footer-link:hover {
  color: #111827;
  text-decoration: underline;
}

.lang-select {
  width: auto;
  min-width: 130px;
}

/* Header burger menu */
.nav-toggle {
  /* Visually hidden but still toggleable by label[for] */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-burger {
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  background: #FFFfff;
  position: relative;
  z-index: 10001;
}
.nav-burger:focus-visible {
  outline: 3px solid rgba(39, 102, 255, 0.25);
  outline-offset: 2px;
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

.app-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  /* dropdown look */
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #FFFfff;
  box-shadow: var(--shadow);
  padding: 0.5rem 0.6rem;
  /* keep it visually separated */
  margin-top: 0.75rem;
}

.app-nav .nav-link {
  padding-left: 0;
}

.burger-sep {
  border-top: 1px solid var(--border);
  margin: 0.35rem 0;
}

#navToggle:checked ~ #mainNav {
  display: flex;
}

/** Helpers */
.cursor-pointer {
  cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/* Homepage blocks with icons                                                  */
/* -------------------------------------------------------------------------- */
[data-page=home] .container .home-bg-image {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: 400px;
}
@media (max-width: 560px) {
  [data-page=home] .container .home-bg-image {
    display: none;
  }
}
[data-page=home] .container .row {
  width: 100%;
  /* @media (max-width: 560px) {
    width: 100%;
    margin: auto;
  } */
}
[data-page=home] .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background-color: var(--bg);
  color: #111827;
  font-size: 0.85rem;
  height: 20px;
  width: 40px;
}

.home-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  will-change: transform;
}
.home-block:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 102, 255, 0.35);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
}
.home-block:focus-visible {
  outline: 3px solid rgba(39, 102, 255, 0.25);
  outline-offset: 3px;
}

.home-block__icon {
  width: 100%;
  user-select: none;
  overflow: hidden;
}
.home-block__icon img {
  display: block;
  margin: auto;
}

.home-block__content {
  min-width: 0;
}

.home-block__title {
  display: block;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.home-block__desc {
  display: block;
  margin-top: 2px;
  line-height: 1.45;
}

/* A responsive grid helper for the homepage tiles */
.home-blocks-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .home-blocks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .home-blocks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .home-block {
    transition: none;
  }
  .home-block:hover {
    transform: none;
  }
}
.bg-secondary {
  background-color: var(--secondary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

/*# sourceMappingURL=styles.css.map */
