/* Acceso Inteligente — Brand Colors */
/* Primary: deep cobalt #1D4ED8 | Accent: teal #0891B2 | Font: DM Sans */

:root {
  --md-primary-fg-color:        #1D4ED8;
  --md-primary-fg-color--light: #3B82F6;
  --md-primary-fg-color--dark:  #1E3A8A;
  --md-accent-fg-color:         #0891B2;
  --md-accent-fg-color--transparent: #0891B220;
}

/* Dark mode */
[data-md-color-scheme="slate"] {
  --md-primary-fg-color:        #3B82F6;
  --md-primary-fg-color--light: #60A5FA;
  --md-primary-fg-color--dark:  #1D4ED8;
  --md-accent-fg-color:         #22D3EE;
}

/* Nav header */
.md-header {
  background-color: #0F172A;
}

/* Nav tabs */
.md-tabs {
  background-color: #1E3A8A;
}

/* Logo sizing — navbar */
.md-header__button.md-logo img {
  height: 52px !important;
  width: auto !important;
}
/* Extra padding so taller logo fits comfortably */
.md-header__inner {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* Sidebar — dark navy matching admin portal */
.md-nav--primary .md-nav__title {
  background-color: #0F172A;
  color: #E2E8F0;
}

/* Admonition colors */
.md-typeset .admonition.tip,
.md-typeset details.tip {
  border-color: #0891B2;
}
.md-typeset .tip > .admonition-title,
.md-typeset .tip > summary {
  background-color: #0891B220;
}
.md-typeset .tip > .admonition-title::before,
.md-typeset .tip > summary::before {
  background-color: #0891B2;
}

/* Code blocks */
.md-typeset code {
  background-color: #F1F5F9;
  color: #1E3A8A;
  border-radius: 4px;
}

/* Footer */
.md-footer {
  background-color: #0F172A;
}

/* Home page hero */
.home-hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
}
.home-hero img {
  height: 160px !important;
  width: auto !important;
  margin-bottom: 1.5rem;
}

/* Role selection grid — pure HTML, no markdown parsing */
.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.home-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none !important;
  color: inherit !important;
  transition: box-shadow 0.2s, border-color 0.2s;
  background: white;
}
.home-card:hover {
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.15);
  border-color: #1D4ED8;
  text-decoration: none !important;
}
.home-card .icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.home-card h3 {
  margin: 0 0 0.75rem !important;
  color: #1D4ED8 !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
}
.home-card p {
  margin: 0 !important;
  font-size: 0.9rem !important;
  color: #64748B !important;
  line-height: 1.5 !important;
}
