:root {
  --primary: #1565d8;
  --primary-dark: #0c4db1;
  --primary-soft: #edf4ff;
  --secondary: #ffffff;
  --text: #182230;
  --text-soft: #5a6473;
  --border: #dbe6f5;
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-alt: #f2f7ff;
  --success: #0f9d78;
  --danger: #dc3c3c;
  --shadow-lg: 0 24px 80px rgba(21, 101, 216, 0.16);
  --shadow-md: 0 12px 40px rgba(16, 52, 104, 0.08);
  --shadow-sm: 0 8px 24px rgba(16, 52, 104, 0.06);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1200px;
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  z-index: 9999;
  box-shadow: var(--shadow-sm);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 230, 245, 0.7);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #63a5ff 100%);
  box-shadow: 0 10px 24px rgba(21, 101, 216, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 1.05rem;
}

.brand-text small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.15rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--text-soft);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary);
}

.nav-cta {
  margin-left: 0.35rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  margin: 5px 0;
  transition: var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #3b8cff 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(21, 101, 216, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-secondary {
  color: var(--primary);
  background: #fff;
  border-color: rgba(21, 101, 216, 0.18);
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(circle at top left, rgba(21, 101, 216, 0.11), transparent 30%),
    radial-gradient(circle at bottom right, rgba(99, 165, 255, 0.16), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1.08;
  max-width: 12ch;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 60ch;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.hero-badges li {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(219, 230, 245, 0.7);
  color: var(--text-soft);
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-main {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 230, 245, 0.9);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dashboard-topbar {
  display: flex;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-blue {
  background: var(--primary);
}

.dot-light {
  background: #c9d8ef;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 72px 1fr;
}

.dashboard-sidebar {
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, #f8fbff 0%, #f0f6ff 100%);
  padding: 1rem 0.8rem;
}

.sidebar-logo {
  width: 36px;
  height: 36px;
  margin: 0 auto 1.2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #78b3ff);
}

.sidebar-item {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #d9e5f7;
  margin-bottom: 1rem;
}

.sidebar-item.active {
  background: var(--primary);
}

.dashboard-content {
  padding: 1.3rem;
  background: #ffffff;
}

.dashboard-header-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.dashboard-label {
  margin: 0 0 0.2rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.dashboard-header-row h3 {
  margin: 0;
  font-size: 1.2rem;
}

.status-badge,
.panel-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: #ecfbf6;
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.metric-card {
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
  border: 1px solid var(--border);
}

.metric-title {
  display: block;
  color: var(--text-soft);
  font-size: 0.85rem;
  margin-bottom: 0.55rem;
}

.metric-card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.metric-card small {
  color: var(--text-soft);
}

.dashboard-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1rem;
  background: #fff;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.fake-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  min-height: 160px;
  padding-top: 1rem;
}

.fake-chart span {
  flex: 1;
  background: linear-gradient(180deg, #8ec0ff 0%, var(--primary) 100%);
  border-radius: 999px 999px 16px 16px;
  min-width: 18px;
  animation: pulseBars 3.4s ease-in-out infinite;
}

.fake-chart span:nth-child(2) { animation-delay: 0.2s; }
.fake-chart span:nth-child(3) { animation-delay: 0.4s; }
.fake-chart span:nth-child(4) { animation-delay: 0.6s; }
.fake-chart span:nth-child(5) { animation-delay: 0.8s; }
.fake-chart span:nth-child(6) { animation-delay: 1s; }
.fake-chart span:nth-child(7) { animation-delay: 1.2s; }

@keyframes pulseBars {
  0%, 100% {
    filter: brightness(1);
    transform: translateY(0);
  }
  50% {
    filter: brightness(1.08);
    transform: translateY(-3px);
  }
}

.activity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.activity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.activity-icon {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 0.45rem;
  box-shadow: 0 0 0 6px rgba(21, 101, 216, 0.08);
}

.activity-list strong {
  display: block;
  font-size: 0.95rem;
}

.activity-list small {
  color: var(--text-soft);
}

.panel-footer-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.floating-card {
  position: absolute;
  padding: 1rem 1.1rem;
  min-width: 200px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 230, 245, 0.75);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.floating-card-one {
  top: 40px;
  right: -8px;
}

.floating-card-two {
  bottom: 36px;
  left: -6px;
}

.floating-title {
  display: block;
  font-size: 0.79rem;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

.stats {
  padding: 0 0 2rem;
  margin-top: -1rem;
}

.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.stat-box {
  padding: 1.3rem 1.1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-box strong {
  display: block;
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

.stat-box span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.section {
  padding: 5.8rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
}

.section-grid.two-col {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.4rem;
  align-items: start;
}

.content-stack > * + * {
  margin-top: 1rem;
}

.section-head {
  max-width: 780px;
  margin-bottom: 2.4rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section h2,
.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
}

.section-head p {
  margin-top: 0.95rem;
  color: var(--text-soft);
}

.card-grid.six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.info-card,
.feature-panel,
.contact-card,
.compliance-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-card:hover,
.feature-panel:hover,
.contact-card:hover,
.compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-card h3,
.feature-panel h3,
.contact-card h3,
.compliance-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.info-card p,
.feature-panel p,
.contact-card p,
.compliance-card p {
  margin: 0;
  color: var(--text-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.compliance-wrap {
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(21, 101, 216, 0.08);
}

.policy-note {
  margin-top: 1.3rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}

.policy-note strong {
  display: block;
  margin-bottom: 0.45rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.35rem;
}

.contact-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.9rem;
  color: var(--text-soft);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fdfefe;
  padding: 0.95rem 1rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(21, 101, 216, 0.55);
  box-shadow: 0 0 0 4px rgba(21, 101, 216, 0.08);
}

.site-footer {
  background: #0f1a2b;
  color: #e6eef9;
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-copy {
  color: #b3c4dc;
  max-width: 36ch;
}

.site-footer h4 {
  margin: 0 0 1rem;
  color: #fff;
}

.footer-links li + li {
  margin-top: 0.7rem;
}

.footer-links a {
  color: #b3c4dc;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(179, 196, 220, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #b3c4dc;
}

.social-links a:hover,
.social-links a:focus {
  color: #fff;
}

/* POLICY PAGES */
.policy-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.policy-hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.policy-hero p {
  max-width: 70ch;
  color: var(--text-soft);
}

.policy-content {
  padding: 3rem 0 5rem;
}

.policy-shell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.policy-section + .policy-section {
  margin-top: 2rem;
}

.policy-section h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.policy-section p,
.policy-section li {
  color: var(--text-soft);
}

.policy-section ul {
  margin: 0.7rem 0 0;
  padding-left: 1.25rem;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .hero-grid,
  .section-grid.two-col,
  .contact-grid,
  .footer-grid,
  .dashboard-panels {
    grid-template-columns: 1fr;
  }

  .card-grid.six-grid,
  .stats-grid,
  .feature-grid,
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card-one {
    right: 10px;
  }

  .floating-card-two {
    left: 10px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-links li a {
    display: block;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
  }

  .nav-links li a:hover,
  .nav-links li a:focus {
    background: var(--primary-soft);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.5rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .card-grid.six-grid,
  .stats-grid,
  .feature-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badges li,
  .btn {
    width: 100%;
  }

  .dashboard-content {
    padding: 1rem;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }

  .hero-visual {
    display: block;
  }

  .policy-shell {
    padding: 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* AUTH PAGES */
.auth-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f5f9ff;
}

.auth-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
}

.auth-form input {
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.auth-links {
    margin-top: 15px;
    font-size: 14px;
}

/* DASHBOARD */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 220px;
    background: #0d47a1;
    color: white;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 10px;
    cursor: pointer;
}

.sidebar li.active {
    background: #1976d2;
    border-radius: 6px;
}

.dashboard-main {
    flex: 1;
    padding: 30px;
    background: #f5f9ff;
}

.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin: 20px 0;
}

.dashboard-body {
    background: #f4f7fb;
    font-family: 'Poppins', sans-serif;
}

/* Layout */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.dashboard-sidebar {
    width: 240px;
    background: #0d47a1;
    color: white;
    padding: 20px;
}

.sidebar-header h2 {
    margin-bottom: 5px;
}

.sidebar-header p {
    font-size: 12px;
    opacity: 0.7;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sidebar-menu li {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 5px;
    cursor: pointer;
}

.sidebar-menu li.active,
.sidebar-menu li:hover {
    background: #1976d2;
}

/* Main */
.dashboard-content {
    flex: 1;
    padding: 30px;
}

/* Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    background: #1976d2;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* KPI */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.kpi-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.kpi-card strong {
    font-size: 22px;
}

/* Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Cards */
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Activity */
.activity-list {
    list-style: none;
    padding: 0;
}

.activity-list li {
    margin-bottom: 15px;
}

/* Status */
.status-item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.status {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.success {
    background: #e6f4ea;
    color: green;
}

.warning {
    background: #fff3cd;
    color: #856404;
}


.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.data-table th,
.data-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}


@media(max-width:900px){
    .kpi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }
}

.auth-body {
  font-family: Arial, sans-serif;
  background: #f4f6f9;
  margin: 0;
  padding: 0;
}

.auth-container {
  width: 100%;
  max-width: 380px;
  margin: 80px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.auth-container h2 {
  margin-bottom: 10px;
  color: #222;
}

.auth-container p {
  color: #666;
  margin-bottom: 20px;
}

.auth-container input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}

.auth-container button {
  width: 100%;
  padding: 12px;
  background: #0b5cff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.auth-container button:hover {
  background: #084fd9;
}

.auth-links {
  margin-top: 20px;
  font-size: 14px;
}

.auth-links a {
  color: #0b5cff;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

.auth-body {
  font-family: Arial, sans-serif;
  background: #f4f6f9;
  margin: 0;
  padding: 0;
}

.auth-container {
  width: 100%;
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.auth-container h2 {
  margin-bottom: 10px;
  color: #222;
}

.auth-container p {
  color: #666;
  margin-bottom: 20px;
}

.auth-container input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 14px;
}

.auth-container button {
  width: 100%;
  padding: 12px;
  background: #0b5cff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
}

.auth-container button:hover {
  background: #084fd9;
}

.auth-links {
  margin-top: 18px;
  font-size: 14px;
}

.auth-links a {
  color: #0b5cff;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

.user-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background-color: #0b5cff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.user-box button {
  padding: 6px 12px;
  background-color: #ff4d4f;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.user-box button:hover {
  background-color: #d9363e;
}

