body {
  margin: 0;
  padding: 0;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  background-color: #f5f7fb;
}

a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.landing-page {
  min-height: 100vh;
  padding: 4rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.landing-page .hero {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.landing-page .hero-text {
  flex: 1 1 320px;
}

.landing-page .hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #0d6efd;
  font-weight: 700;
}

.landing-page .hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.landing-page .hero-visual {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
}

.landing-page .visual-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.15);
  min-width: 260px;
}

.landing-page .visual-card .qr-login {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.landing-page .visual-label {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.landing-page .visual-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.landing-page .visual-metrics li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.landing-page .visual-metrics strong {
  font-size: 1.3rem;
}

.landing-page .features,
.landing-page .security {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 1rem 3rem rgba(15, 23, 42, 0.08);
}

.landing-page .section-subtitle {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.landing-page .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.landing-page .feature-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #eef2ff;
}

.landing-page .security-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.landing-page .security-list li {
  background: #f8fafc;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
}

.pending-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #eef3fb;
}

.pending-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.dashboard-shell {
  min-height: 100vh;
  display: flex;
}

.dashboard-sidebar {
  width: 260px;
  background: #0b2239;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}

.dashboard-sidebar .brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
}

.dashboard-sidebar .logo-initials {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #1d9bf0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.dashboard-sidebar .sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-sidebar .sidebar-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.65rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.dashboard-sidebar .sidebar-link.active,
.dashboard-sidebar .sidebar-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  text-decoration: none;
}

.dashboard-main {
  flex: 1;
  padding: 2rem;
  background: #eef3fb;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dashboard-topbar h1 {
  margin: 0;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.dashboard-content .welcome-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.quick-link-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.quick-link-card {
  background: white;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-link-card a {
  font-weight: 600;
}

.report-page h1 {
  font-size: 2rem;
}

.report-page form .form-control[readonly] {
  background-color: #f8f9fa;
  cursor: default;
}

.report-page .chart-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
}

.report-page .chart-wrapper canvas {
  width: 100% !important;
  height: 100% !important;
}

.report-page .table-responsive {
  max-height: 500px;
  overflow-y: auto;
}

.report-page .card {
  border-radius: 0.75rem;
}

.report-page .trend-arrow {
  font-size: 0.85em;
  margin-left: 4px;
}

.report-page .trend-arrow.trend-up {
  color: #198754;
}

.report-page .trend-arrow.trend-down {
  color: #dc3545;
}

.report-page .nav-tabs .nav-link {
  font-weight: 600;
  color: #495057;
}

.report-page .nav-tabs .nav-link.active {
  color: #0d6efd;
}
