/* anfrage.bunsentechnik.de – Styles */

:root {
  --anf-dark:  #0f1923;
  --anf-teal:  #20c997;
  --anf-teal2: #17a589;
}

body {
  background: #f4f6f9;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Navbar */
.anf-navbar {
  background: var(--anf-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.anf-navbar .navbar-brand {
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--anf-teal) !important;
}
.anf-navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  transition: color .15s;
}
.anf-navbar .nav-link:hover { color: var(--anf-teal) !important; }

.btn-teal {
  background: var(--anf-teal);
  color: #fff !important;
  border: none;
  font-weight: 600;
}
.btn-teal:hover { background: var(--anf-teal2); }

/* Main + Footer */
.anf-main   { padding-top: 72px; min-height: calc(100vh - 60px); }
.anf-footer { background: var(--anf-dark); color: rgba(255,255,255,.5); }
.anf-footer a { color: var(--anf-teal); text-decoration: none; }

/* Cards */
.anf-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.anf-card .card-header {
  background: var(--anf-dark);
  color: #fff;
  border-radius: 12px 12px 0 0 !important;
  font-weight: 600;
}

/* Status badges override */
.badge.bg-purple { background-color: #6f42c1 !important; }

/* Auth pages (login/register) */
.auth-wrapper {
  min-height: calc(100vh - 72px - 60px);
  display: flex;
  align-items: center;
}
.auth-card {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.auth-card .card-header {
  background: var(--anf-dark);
  color: #fff;
  border-radius: 16px 16px 0 0 !important;
  text-align: center;
  padding: 24px;
}
.auth-card .card-header .auth-icon {
  font-size: 2.5rem;
  color: var(--anf-teal);
}
.auth-card .card-body { padding: 32px; }

/* Hero/Dashboard */
.status-timeline .timeline-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}
.status-timeline .timeline-item:last-child { border-bottom: none; }
