@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #1f2a25;
  background: #f6f8f5;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: #1f2a25;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin: 0 0 0.75rem;
  color: #5d6b63;
}

a {
  color: #1f7a3a;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #196731;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: rgba(31, 122, 58, 0.2);
}

.text-muted-soft {
  color: #5d6b63 !important;
}

.section {
  padding: 3rem 0;
}

@media (max-width: 767.98px) {
  .section {
    padding: 2rem 0;
  }
}
.page-bg {
  background: radial-gradient(1200px 400px at 90% -200px, rgba(31, 122, 58, 0.08), transparent 60%), radial-gradient(900px 320px at -10% -150px, rgba(244, 169, 37, 0.08), transparent 60%), #f6f8f5;
  min-height: 100vh;
}

.btn {
  --bs-btn-padding-y: 0.75rem;
  --bs-btn-padding-x: 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.2px;
  transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid transparent;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 122, 58, 0.25);
}

.btn--primary {
  background: #1f7a3a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(31, 122, 58, 0.25);
}
.btn--primary:hover {
  background: #196731;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 122, 58, 0.3);
}

.btn--accent {
  background: #f4a925;
  color: #2a1d00;
}
.btn--accent:hover {
  background: #d8910e;
  color: #2a1d00;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: #1f7a3a;
  border-color: #1f7a3a;
}
.btn--ghost:hover {
  background: #e6f3ec;
  color: #196731;
}

.btn--soft {
  background: #e6f3ec;
  color: #196731;
}
.btn--soft:hover {
  background: rgb(216.2162162162, 236.3837837838, 225.5243243243);
  color: #196731;
}

.btn--danger {
  background: #fff3bf;
  color: #b21f2d;
}
.btn--danger:hover {
  background: rgb(255, 239.175, 170.6);
  color: #b21f2d;
}

.btn--reset {
  background: #ffffff;
  color: #5d6b63;
  border-color: #e3e7e1;
}
.btn--reset:hover {
  background: #f6f8f5;
  color: #1f2a25;
}

.btn--sm {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  font-size: 0.8125rem;
}

.btn--lg {
  --bs-btn-padding-y: 1rem;
  --bs-btn-padding-x: 1.5rem;
  font-size: 1rem;
}

.card-soft {
  background: #ffffff;
  border: 1px solid #e3e7e1;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
  padding: 1.5rem;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card-soft:hover {
  box-shadow: 0 8px 20px rgba(20, 40, 30, 0.08), 0 2px 6px rgba(20, 40, 30, 0.04);
}

.card-soft--lg {
  padding: 2rem;
  border-radius: 24px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e3e7e1;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stat-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e6f3ec;
  color: #1f7a3a;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.stat-card__value {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #1f2a25;
  line-height: 1;
}
.stat-card__label {
  font-size: 0.8125rem;
  color: #5d6b63;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2a25;
  margin-bottom: 0.5rem;
}
.form-label .req {
  color: #c0392b;
  margin-left: 2px;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1.5px solid #e3e7e1;
  background: #ffffff;
  padding: 0.7rem 0.95rem;
  font-size: 0.875rem;
  color: #1f2a25;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form-control::placeholder,
.form-select::placeholder {
  color: #8a948d;
}
.form-control:focus,
.form-select:focus {
  border-color: #1f7a3a;
  box-shadow: 0 0 0 4px rgba(31, 122, 58, 0.12);
}

.form-hint {
  font-size: 0.8125rem;
  color: #d8910e;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-row {
  margin-bottom: 1.25rem;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}
.captcha__image {
  flex: 1;
  background: repeating-linear-gradient(135deg, rgba(31, 122, 58, 0.06) 0 6px, transparent 6px 12px), linear-gradient(180deg, #eef2ee, #dde6dc);
  border: 1px solid #e3e7e1;
  border-radius: 10px;
  padding: 0.25rem;
  text-align: center;
  font-family: "Courier New", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: #196731;
  text-decoration: line-through;
  user-select: none;
}
.captcha__refresh {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #e3e7e1;
  background: #ffffff;
  color: #1f7a3a;
  cursor: pointer;
  transition: all 150ms ease;
}
.captcha__refresh:hover {
  background: #e6f3ec;
  transform: rotate(90deg);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: #e6f3ec;
  color: #196731;
}

.badge-near-etl {
  background: #fff3bf;
  color: #8a6d00;
}

.badge-etl {
  background: #ffd6cf;
  color: #a0271a;
}

.table-modern {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e3e7e1;
  box-shadow: 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
}
.table-modern thead th {
  background: linear-gradient(180deg, #1f7a3a, #196731);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px;
  text-align: left;
  border: none;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 6;
}
.table-modern tbody td {
  padding: 8px;
  font-size: 0.875rem;
  color: #1f2a25;
  border-top: 1px solid #e3e7e1;
  vertical-align: middle;
}
.table-modern tbody tr:hover {
  background: rgba(31, 122, 58, 0.04);
}
.table-modern tbody tr:nth-child(even) {
  background: rgba(31, 122, 58, 0.02);
}

.table-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e3e7e1;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
}
.table-filter-row .form-control,
.table-filter-row .form-select {
  max-width: 200px;
}

.section-header {
  margin-bottom: 2rem;
}
.section-header__eyebrow {
  color: #1f7a3a;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}
.section-header__title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}
.section-header__sub {
  color: #5d6b63;
  max-width: 640px;
}

.auth-shell {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991.98px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }
}

.auth-shell__hero {
  position: relative;
  background: linear-gradient(135deg, rgba(31, 122, 58, 0.85), rgba(25, 103, 49, 0.9)), url("../images/hero-1.jpg") center/cover no-repeat;
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .auth-shell__hero {
    display: none;
  }
}
.auth-shell__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 80% 20%, rgba(244, 169, 37, 0.25), transparent 60%);
  pointer-events: none;
}
.auth-shell__hero > * {
  position: relative;
  z-index: 1;
}
.auth-shell__hero h2 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.1;
}
.auth-shell__hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
}

.auth-shell__form-side {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .auth-shell__form-side {
    padding: 1.5rem;
  }
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border: 1px solid #e3e7e1;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(20, 40, 30, 0.1), 0 4px 12px rgba(20, 40, 30, 0.06);
  padding: 2rem;
}
.auth-card__title {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}
.auth-card__sub {
  color: #5d6b63;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.hero-swiper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(20, 40, 30, 0.08), 0 2px 6px rgba(20, 40, 30, 0.04);
}
.hero-swiper .swiper-slide {
  position: relative;
  height: 460px;
}
@media (max-width: 767.98px) {
  .hero-swiper .swiper-slide {
    height: 340px;
  }
}
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-swiper .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 3rem;
}
@media (max-width: 767.98px) {
  .hero-swiper .slide-overlay {
    padding: 0 1.25rem;
  }
}
.hero-swiper .slide-content {
  color: #fff;
  max-width: 560px;
  margin-left: 0.75rem;
}
.hero-swiper .slide-content h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .hero-swiper .slide-content h1 {
    font-size: 2.25rem;
  }
}
.hero-swiper .slide-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 28px;
  height: 4px;
  border-radius: 2px;
  transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-swiper .swiper-pagination-bullet-active {
  background: #f4a925;
  width: 40px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 10px;
  border: unset;
  backdrop-filter: blur(6px);
}
.hero-swiper .swiper-button-next svg,
.hero-swiper .swiper-button-prev svg {
  display: none;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 800;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);
}

.crops-swiper .swiper-slide {
  height: auto;
}

.crop-card {
  background: #ffffff;
  border: 1px solid #e3e7e1;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
  padding: 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.crop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(20, 40, 30, 0.08), 0 2px 6px rgba(20, 40, 30, 0.04);
}
.crop-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6f3ec, rgb(236.8918918919, 246.3081081081, 241.2378378378));
  display: grid;
  place-items: center;
  color: #1f7a3a;
  font-size: 1.75rem;
}
.crop-card__title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.crop-card__meta {
  font-size: 0.8125rem;
  color: #5d6b63;
}

.legend-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.legend-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid #e3e7e1;
  background: #ffffff;
}
.legend-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}
.legend-chip--near {
  color: #b8860b;
  background: #fff3bf;
  border-color: transparent;
}
.legend-chip--etl {
  color: #c0392b;
  background: #ffd6cf;
  border-color: transparent;
}

.lang-switch {
  padding: 0;
  border-radius: 999px;
  border: none;
  background: unset;
  box-shadow: none;
}
.lang-switch .lang-switch__track {
  width: 98px;
  height: 30px;
  border-radius: 999px;
  background: #eef0f2;
  padding: 3px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid #d8dde2;
  position: relative;
  transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.lang-switch .lang-switch__track .lang-switch__text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #5d6b63;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: color 150ms ease;
}
.lang-switch .lang-switch__track .lang-switch__thumb {
  width: calc(50% - 4px);
  height: 24px;
  border-radius: 999px;
  position: absolute;
  left: 3px;
  top: 2px;
  background: #e6f3ec;
  border: 1px solid #1f7a3a;
  box-shadow: none;
  transform: translateX(0);
  transition: transform 150ms ease;
}

.lang-switch[data-current-lang=mr] .lang-switch__track,
.lang-switch[aria-checked=true] .lang-switch__track {
  background: #eef0f2;
  border-color: #d8dde2;
  box-shadow: none;
}
.lang-switch[data-current-lang=mr] .lang-switch__thumb,
.lang-switch[aria-checked=true] .lang-switch__thumb {
  transform: translateX(45px);
}
.lang-switch[data-current-lang=mr] .lang-switch__text--mr,
.lang-switch[aria-checked=true] .lang-switch__text--mr {
  color: #8a948d;
}
.lang-switch[data-current-lang=mr] .lang-switch__text--en,
.lang-switch[aria-checked=true] .lang-switch__text--en {
  color: #1f7a3a;
}

.lang-switch[data-current-lang=en] .lang-switch__text--mr,
.lang-switch[aria-checked=false] .lang-switch__text--mr {
  color: #1f7a3a;
}
.lang-switch[data-current-lang=en] .lang-switch__text--en,
.lang-switch[aria-checked=false] .lang-switch__text--en {
  color: #8a948d;
}

@media (max-width: 575.98px) {
  .lang-switch {
    min-width: 92px;
    min-height: 28px;
    font-size: 0.6rem;
  }
  .lang-switch__track {
    width: 92px;
    height: 28px;
  }
  .lang-switch__thumb {
    width: calc(50% - 4px);
    height: 22px;
    top: 2px;
  }
  .lang-switch__text {
    font-size: 0.56rem;
  }
  .lang-switch[data-current-lang=mr] .lang-switch__thumb,
  .lang-switch[aria-checked=true] .lang-switch__thumb {
    transform: translateX(42px);
  }
}
/* ============ Android download pill (header) ============ */
.android-pill {
  display: inline-flex;
  align-items: center;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #1f7a3a;
  color: #1f7a3a;
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.android-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: #1f7a3a;
  transition: color 700ms ease;
}
.android-pill__label {
  display: inline-block;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  padding: 0;
  overflow: hidden;
  transform: translateX(8px);
  transition: max-width 320ms cubic-bezier(0.4, 0, 0.2, 1), opacity 220ms ease, padding 320ms cubic-bezier(0.4, 0, 0.2, 1), transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.android-pill:hover, .android-pill:focus-visible {
  border-color: #1f7a3a;
  color: #1f7a3a;
}
.android-pill:hover .android-pill__icon, .android-pill:focus-visible .android-pill__icon {
  color: #1f7a3a;
}
.android-pill:hover .android-pill__label, .android-pill:focus-visible .android-pill__label {
  max-width: 220px;
  opacity: 1;
  padding: 0 4px 0 8px;
  transform: translateX(0);
}

/* ============ Footer android link (no transition) ============ */
.android-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.5rem;
  padding: 0.75rem 0.875rem !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 169, 37, 0.35);
  color: #f4a925 !important;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}
.android-link i {
  font-size: 1rem;
}

/* ============ Important Updates Carousel ============ */
.updates-section {
  position: relative;
  padding: 4rem 0 4.5rem;
  margin-top: 1rem;
  overflow: hidden;
  background: radial-gradient(1200px 400px at 10% 0%, #eaf6ee 0%, transparent 60%), radial-gradient(900px 350px at 95% 100%, #fff4dc 0%, transparent 55%), linear-gradient(180deg, #f6faf4 0%, #eef6f0 100%);
  border-top: 1px solid #e3e7e1;
  border-bottom: 1px solid #e3e7e1;
}

.updates-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.updates-blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.updates-blob--1 {
  width: 280px;
  height: 280px;
  top: -80px;
  left: -60px;
  background: #b9e3c6;
}
.updates-blob--2 {
  width: 320px;
  height: 320px;
  bottom: -120px;
  right: -80px;
  background: #ffe2a8;
}
.updates-blob--3 {
  width: 220px;
  height: 220px;
  top: 30%;
  left: 45%;
  background: #d6ecff;
  opacity: 0.4;
}

.updates-nav {
  display: flex;
  gap: 0.5rem;
}
.updates-nav__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e3e7e1;
  background: #fff;
  color: #1f7a3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(31, 122, 58, 0.08);
  transition: all 0.2s ease;
}
.updates-nav__btn:hover {
  background: #1f7a3a;
  color: #fff;
  border-color: #1f7a3a;
  transform: translateY(-2px);
}

.updates-swiper {
  padding: 8px 4px 48px;
  position: relative;
  z-index: 1;
}

.updates-swiper__pagination {
  bottom: 0 !important;
}
.updates-swiper__pagination .swiper-pagination-bullet {
  background: #1f7a3a;
  opacity: 0.35;
  width: 8px;
  height: 8px;
  transition: all 0.25s ease;
}
.updates-swiper__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.update-card {
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid #e8ece6;
  box-shadow: 0 6px 20px rgba(20, 50, 30, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.update-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(20, 50, 30, 0.12);
}
.update-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--accent-soft, #e9f7ef);
  color: var(--accent, #1f7a3a);
  margin-bottom: 1rem;
}
.update-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #1f7a3a);
  background: var(--accent-soft, #e9f7ef);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.update-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2a25;
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.update-card__desc {
  color: #5d6b63;
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 1.1rem;
  flex: 1;
}
.update-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent, #1f7a3a);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.update-card__link i {
  transition: transform 0.2s ease;
}
.update-card__link:hover {
  gap: 0.65rem;
}
.update-card__link:hover i {
  transform: translateX(3px);
}
.update-card--green {
  --accent: #1f7a3a;
  --accent-soft: #e9f7ef;
}
.update-card--gold {
  --accent: #d8910e;
  --accent-soft: #fff4dc;
}
.update-card--blue {
  --accent: #2b8acb;
  --accent-soft: #e6f4f9;
}
.update-card--rose {
  --accent: #c8385e;
  --accent-soft: #fce6ec;
}
.update-card--teal {
  --accent: #128a7a;
  --accent-soft: #def5f1;
}


.policy-hero {
  background: linear-gradient(135deg, #1f7a3a, #196731);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
}
.policy-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 169, 37, 0.35), transparent 70%);
}
.policy-hero .breadcrumb {
  margin: 0;
  font-size: 0.8125rem;
}
.policy-hero .breadcrumb-item, .policy-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
}
.policy-hero .breadcrumb-item.active {
  color: #f4a925;
}
.policy-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
.policy-hero h1 {
  color: #fff;
  font-size: 2.25rem;
  margin: 0.5rem 0 0.25rem;
  position: relative;
  z-index: 1;
}
.policy-hero .lede {
  color: rgba(255, 255, 255, 0.85);
  max-width: 780px;
  position: relative;
  z-index: 1;
  margin: 0;
}
.policy-hero .lede strong {
  color: #fff;
}
.policy-hero .lede a {
  color: #f4a925;
  text-decoration: underline;
}
.policy-hero .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}

.policy-shell {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

.policy-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  background: #ffffff;
  border: 1px solid #e3e7e1;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
  padding: 18px;
}
.policy-toc h6 {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #5d6b63;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.policy-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 10px;
  border-radius: 10px;
  color: #1f2a25;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 150ms ease;
}
.policy-toc a:hover {
  background: #e6f3ec;
  color: #196731;
}
.policy-toc a .num {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #e6f3ec;
  color: #196731;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.7rem;
}

.policy-card {
  background: #ffffff;
  border: 1px solid #e3e7e1;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(20, 40, 30, 0.08), 0 2px 6px rgba(20, 40, 30, 0.04);
  padding: 2rem 36px;
}
@media (max-width: 575.98px) {
  .policy-card {
    padding: 1.5rem;
  }
}

.policy-section {
  scroll-margin-top: 100px;
  padding-top: 1.25rem;
}
.policy-section + .policy-section {
  border-top: 1px dashed #e3e7e1;
  margin-top: 1.5rem;
}
.policy-section h2 {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #1f2a25;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 14px;
}
.policy-section h2 .num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1f7a3a, #196731);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 10px rgba(31, 122, 58, 0.25);
}
.policy-section p,
.policy-section li {
  color: #3a463f;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.policy-section ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}
.policy-section ul li {
  margin-bottom: 6px;
}
.policy-section strong {
  color: #1f2a25;
}
.policy-section a {
  color: #196731;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-block {
  margin-top: 14px;
  padding: 18px 1.25rem;
  background: #f6f8f5;
  border: 1px solid #e3e7e1;
  border-left: 4px solid #1f7a3a;
  border-radius: 12px;
}
.contact-block strong {
  display: block;
  color: #196731;
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.disclaimer-card {
  margin-top: 28px;
  background: #ffffff;
  border: 1px solid #e3e7e1;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(20, 40, 30, 0.08), 0 2px 6px rgba(20, 40, 30, 0.04);
  padding: 2rem 36px;
}
@media (max-width: 575.98px) {
  .disclaimer-card {
    padding: 1.5rem;
  }
}
.disclaimer-card .disclaimer-title {
  text-align: center;
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #b21f2d;
  font-size: 1rem;
  margin-bottom: 22px;
  position: relative;
}
.disclaimer-card .disclaimer-title::before, .disclaimer-card .disclaimer-title::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 2px;
  background: #b21f2d;
  vertical-align: middle;
  margin: 0 0.75rem;
}
.disclaimer-card h3 {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1f2a25;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 18px 0 0.5rem;
}
.disclaimer-card p {
  color: #3a463f;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 10px;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e3e7e1;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 1px 2px rgba(20, 40, 30, 0.06);
  height: 70px;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .site-header {
    height: 68px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand__logo {
  width: 70px;
  height: 70px;
}
@media (max-width: 767.98px) {
  .brand__logo {
    width: 44px;
    height: 44px;
  }
}
.brand__other {
  width: 44px;
  height: 44px;
}
@media (max-width: 767.98px) {
  .brand__other {
    width: 32px;
    height: 32px;
  }
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__title {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: #1f7a3a;
}
@media (max-width: 767.98px) {
  .brand__title {
    font-size: 0.875rem;
  }
}
.brand__subtitle {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1f7a3a;
}
.brand__tag {
  font-size: 0.875rem;
  color: #5d6b63;
  margin-top: 2px;
}
@media (max-width: 767.98px) {
  .brand__tag {
    display: none;
  }
}
.brand__footer {
  background-color: #ffffff;
  padding: 0.25rem;
  border-radius: 10px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-main .nav-link {
  color: #1f2a25;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: all 150ms ease;
}
.nav-main .nav-link:hover, .nav-main .nav-link.active {
  background: #e6f3ec;
  color: #196731;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown .nav-dropdown__toggle {
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.nav-dropdown .nav-dropdown__toggle i {
  font-size: 0.8125rem;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown .nav-dropdown__menu {
  position: absolute;
  top: 40px;
  left: 0;
  width: max-content;
  border-radius: 16px;
  border: 1px solid #e3e7e1;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(20, 40, 30, 0.12), 0 2px 8px rgba(20, 40, 30, 0.08);
  padding: 0.5rem;
  opacity: 0;
  display: grid;
  gap: 0.25rem;
  transform: translateY(10px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 240ms cubic-bezier(0.4, 0, 0.2, 1), transform 240ms cubic-bezier(0.4, 0, 0.2, 1), visibility 240ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 30;
}
.nav-dropdown .nav-dropdown__item {
  display: block;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  color: #1f2a25;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 150ms ease;
}
.nav-dropdown .nav-dropdown__item:hover, .nav-dropdown .nav-dropdown__item.active {
  background: #e6f3ec;
  color: #196731;
}
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.nav-dropdown:hover .nav-dropdown__toggle i, .nav-dropdown:focus-within .nav-dropdown__toggle i, .nav-dropdown.is-open .nav-dropdown__toggle i {
  transform: rotate(180deg);
}
.nav-dropdown.has-active-child .nav-dropdown__toggle {
  background: #e6f3ec;
  color: #196731;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #e3e7e1;
  background: #ffffff;
  color: #1f2a25;
  font-size: 1.25rem;
}
@media (max-width: 991.98px) {
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 40, 30, 0.1), 0 4px 12px rgba(20, 40, 30, 0.06);
  z-index: 1050;
  padding: 1.5rem;
  transition: right 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.open {
  right: 0;
}
.mobile-drawer .nav-link {
  display: block;
  padding: 0.75rem;
  border-radius: 10px;
}
.mobile-drawer__group {
  margin: 0.25rem 0 0.5rem;
}
.mobile-drawer__group-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #1f7a3a;
  margin: 0.85rem 0 0.35rem;
  padding: 0;
}
.mobile-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #5d6b63;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  background: linear-gradient(180deg, #0f2a1a, #0a1f13);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  display: inline-block;
  padding: 4px 0;
}
.site-footer a:hover {
  color: #f4a925;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__socials {
  display: flex;
  gap: 0.5rem;
}
.site-footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-grid;
  place-items: center;
  transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer__socials a:hover {
  background: #1f7a3a;
  color: #fff;
  transform: translateY(-2px);
}

.page-topbar {
  background: linear-gradient(135deg, #1f7a3a, #196731);
  color: #fff;
  padding: 2rem 0;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.page-topbar::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(244, 169, 37, 0.4), transparent 70%);
  border-radius: 50%;
}
.page-topbar h1 {
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.page-topbar .breadcrumb {
  margin: 0;
  font-size: 0.8125rem;
}
.page-topbar .breadcrumb .breadcrumb-item, .page-topbar .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
}
.page-topbar .breadcrumb .breadcrumb-item.active {
  color: #f4a925;
}
.page-topbar .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.admin-body {
  background: #f4f7f4;
  min-height: 100vh;
}

.admin-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  position: sticky;
  top: 0;
  height: 70px;
  background: #fff;
  border-bottom: 1px solid #e3e7e1;
  z-index: 1040;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 1rem;
  box-shadow: 0 1px 2px rgba(20, 40, 30, 0.06);
}
@media (max-width: 991.98px) {
  .admin-topbar {
    padding: 0 0.75rem;
    gap: 0.75rem;
    height: 60px;
  }
}
.admin-topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.admin-topbar__brand img {
  width: 42px;
  height: 42px;
}
.admin-topbar__brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.admin-topbar__brand .brand-text .t1 {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #b21f2d;
}
.admin-topbar__brand .brand-text .t2 {
  font-size: 11px;
  color: #5d6b63;
  margin-top: 2px;
}
@media (max-width: 575.98px) {
  .admin-topbar__brand .brand-text {
    display: none;
  }
}
.admin-topbar__search {
  flex: 1;
  max-width: 420px;
  position: relative;
}
@media (max-width: 991.98px) {
  .admin-topbar__search {
    display: none;
  }
}
.admin-topbar__search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a948d;
}
.admin-topbar__search input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border-radius: 999px;
  border: 1px solid #e3e7e1;
  background: #f6f8f5;
  font-size: 0.875rem;
  transition: all 150ms ease;
}
.admin-topbar__search input:focus {
  outline: none;
  border-color: #1f7a3a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 122, 58, 0.1);
}
.admin-topbar__spacer {
  flex: 1;
}
.admin-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.admin-topbar .icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f6f8f5;
  border: none;
  color: #1f2a25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms ease;
}
.admin-topbar .icon-btn:hover {
  background: #e6f3ec;
  color: #1f7a3a;
}
.admin-topbar .icon-btn .dot {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c0392b;
  border: 2px solid #fff;
}
.admin-topbar .topbar-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: #f6f8f5;
  cursor: pointer;
  transition: background 150ms ease;
}
.admin-topbar .topbar-user:hover {
  background: #e6f3ec;
}
.admin-topbar .topbar-user .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f7a3a, #196731);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
}
.admin-topbar .topbar-user .meta {
  line-height: 1.1;
}
.admin-topbar .topbar-user .meta .name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1f2a25;
}
.admin-topbar .topbar-user .meta .role {
  display: block;
  font-size: 10px;
  color: #5d6b63;
  margin-top: 0.25rem;
  text-align: left;
}
@media (max-width: 767.98px) {
  .admin-topbar .topbar-user .meta {
    display: none;
  }
}

.admin-shell {
  display: flex;
  flex: 1;
  min-height: 0;
  position: relative;
}

.admin-sidebar {
  width: 245px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbf8 100%);
  border-right: 1px solid #e3e7e1;
  position: sticky;
  top: 70px;
  align-self: flex-start;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  transition: width 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 991.98px) {
  .admin-sidebar {
    position: fixed;
    top: 60px;
    left: -300px;
    width: 245px;
    height: calc(100vh - 60px);
    transition: left 240ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 40px rgba(20, 40, 30, 0.1), 0 4px 12px rgba(20, 40, 30, 0.06);
  }
  .admin-sidebar.is-open {
    left: 0;
  }
}
.admin-sidebar__scroll {
  height: calc(100vh - 70px);
  overflow-y: auto;
}
.admin-sidebar__scroll::-webkit-scrollbar {
  width: 6px;
}
.admin-sidebar__scroll::-webkit-scrollbar-thumb {
  background: rgba(31, 122, 58, 0.15);
  border-radius: 3px;
}
.admin-sidebar__scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(31, 122, 58, 0.5);
}
.admin-sidebar__toggle {
  position: absolute;
  top: 4px;
  right: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e3e7e1;
  color: #1f7a3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
  z-index: 5;
  transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.7rem;
  animation: pulseArrow 2s ease-in-out infinite;
}
.admin-sidebar__toggle:hover {
  background: #1f7a3a;
  color: #fff;
  border-color: #1f7a3a;
  animation: none;
}
@media (max-width: 991.98px) {
  .admin-sidebar__toggle {
    display: none;
  }
}
.admin-sidebar__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  margin: 1rem 0.75rem 0;
  background: linear-gradient(135deg, #e6f3ec, #fff4dc);
  border-radius: 16px;
}
.admin-sidebar__user .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f7a3a, #196731);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}
.admin-sidebar__user .info {
  min-width: 0;
}
.admin-sidebar__user .info .name {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1f2a25;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-sidebar__user .info .status {
  font-size: 0.75rem;
  color: #2e8b57;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.admin-sidebar__user .info .status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e8b57;
}
.admin-sidebar__nav {
  list-style: none;
  padding: 0 0.75rem 0.75rem;
  margin: 0;
  flex: 1;
  display: grid;
  gap: 0.5rem;
  justify-content: flex-start;
}
.admin-sidebar__group-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #8a948d;
  padding: 1rem 0.75rem 0;
}
.admin-sidebar__group-subtitle {
  display: none;
}

@keyframes pulseArrow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(31, 122, 58, 0.45), 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(31, 122, 58, 0), 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
  }
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 10px 0.75rem;
  border-radius: 10px;
  color: #1f2a25;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 150ms ease;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}
.admin-nav-link .icon {
  width: 22px;
  text-align: center;
  color: #5d6b63;
  font-size: 1rem;
  transition: color 150ms ease;
  flex-shrink: 0;
}
.admin-nav-link .label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-nav-link .chev {
  font-size: 0.7rem;
  color: #8a948d;
  transition: transform 150ms ease;
}
.admin-nav-link:hover {
  background: #e6f3ec;
  color: #196731;
}
.admin-nav-link:hover .icon {
  color: #1f7a3a;
}
.admin-nav-link.is-active, .admin-nav-link.is-parent-active {
  background: linear-gradient(90deg, #1f7a3a, #196731);
  color: #fff;
}
.admin-nav-link.is-active .icon,
.admin-nav-link.is-active .chev, .admin-nav-link.is-parent-active .icon,
.admin-nav-link.is-parent-active .chev {
  color: #fff;
}
.admin-nav-link[aria-expanded=true] .chev {
  transform: rotate(180deg);
}

.admin-subnav {
  list-style: none;
  margin: 0.25rem 0 0 0.5rem;
  padding: 0 0 0 0.5rem;
  border-left: 2px solid #e6f3ec;
  display: none;
}
.admin-subnav.is-open {
  display: block;
}
.admin-subnav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.8125rem;
  color: #5d6b63;
  text-decoration: none;
  transition: all 150ms ease;
}
.admin-subnav a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e3e7e1;
  transition: all 150ms ease;
  flex-shrink: 0;
}
.admin-subnav a:hover {
  color: #196731;
}
.admin-subnav a:hover::before {
  background: #1f7a3a;
}
.admin-subnav a.is-active {
  color: #196731;
  font-weight: 600;
  background: #e6f3ec;
}
.admin-subnav a.is-active::before {
  background: #1f7a3a;
  box-shadow: 0 0 0 3px rgba(31, 122, 58, 0.15);
}

.admin-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.admin-main {
  flex: 1;
  padding: 1.25rem;
  min-width: 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  .admin-main {
    padding: 1rem 0.75rem;
  }
}
@media (min-width: 1400px) {
  .admin-main {
    width: 1320px;
    margin: 0 auto;
  }
}

.admin-page-head {
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.admin-page-head h1 {
  font-size: 1.75rem;
  margin-bottom: 4px;
}
.admin-page-head p {
  color: #5d6b63;
  margin: 0;
  font-size: 0.875rem;
}
.admin-page-head .breadcrumb-mini {
  font-size: 0.8125rem;
  color: #8a948d;
}
.admin-page-head .breadcrumb-mini a {
  color: #1f7a3a;
  text-decoration: none;
}

.welcome-banner {
  position: relative;
  border-radius: 24px;
  padding: 1.5rem 2rem;
  background: linear-gradient(120deg, #fff4dc 0%, #e9f7ef 60%, #d6ecff 100%);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .welcome-banner {
    padding: 1.25rem;
  }
}
.welcome-banner__title {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.welcome-banner__title .wave {
  display: inline-block;
  transform-origin: 70% 70%;
  animation: wave 2.4s ease-in-out infinite;
}
.welcome-banner__sub {
  color: #5d6b63;
  max-width: 560px;
  margin-bottom: 1rem;
}
.welcome-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.welcome-banner__deco {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 122, 58, 0.18), transparent 70%);
  pointer-events: none;
}

@keyframes wave {
  0%, 60%, 100% {
    transform: rotate(0);
  }
  10%, 30% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
}
.kpi-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid #e3e7e1;
  box-shadow: 0 1px 2px rgba(20, 40, 30, 0.06);
  overflow: hidden;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 240ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(20, 40, 30, 0.08), 0 2px 6px rgba(20, 40, 30, 0.04);
}
.kpi-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.kpi-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  background: var(--kpi-soft, #e6f3ec);
  color: var(--kpi-color, #1f7a3a);
}
.kpi-card__delta {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(46, 139, 87, 0.12);
  color: #2e8b57;
}
.kpi-card__delta.is-down {
  background: rgba(192, 57, 43, 0.1);
  color: #c0392b;
}
.kpi-card__label {
  font-size: 0.75rem;
  color: #5d6b63;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.kpi-card__value {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--kpi-color, #1f2a25);
  line-height: 1;
}
.kpi-card__foot {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #8a948d;
}
.kpi-card--green {
  --kpi-color: #1f7a3a;
  --kpi-soft: #e9f7ef;
}
.kpi-card--blue {
  --kpi-color: #2b8acb;
  --kpi-soft: #e6f4f9;
}
.kpi-card--gold {
  --kpi-color: #d8910e;
  --kpi-soft: #fff4dc;
}
.kpi-card--rose {
  --kpi-color: #c0392b;
  --kpi-soft: #fce6e3;
}
.kpi-card--teal {
  --kpi-color: #128a7a;
  --kpi-soft: #def5f1;
}
.kpi-card--violet {
  --kpi-color: #6b51c8;
  --kpi-soft: #ece6fb;
}

.panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e3e7e1;
  box-shadow: 0 1px 2px rgba(20, 40, 30, 0.06);
  padding: 1rem 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.panel__head h3 {
  font-size: 1.125rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.panel__head h3 i {
  color: #1f7a3a;
}
.panel__head .head-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.panel__chart {
  position: relative;
  height: 245px;
  width: 100%;
  min-width: 0;
}
.panel__chart canvas {
  max-width: 100% !important;
}
.panel__chart-lg {
  position: relative;
  height: 320px;
  width: 100%;
  min-width: 0;
}
.panel__chart-lg canvas {
  max-width: 100% !important;
}

.seg-tabs {
  display: inline-flex;
  background: #f4f7f4;
  border-radius: 999px;
  padding: 3px;
}
.seg-tabs button {
  border: none;
  background: transparent;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5d6b63;
  border-radius: 999px;
  cursor: pointer;
  transition: all 150ms ease;
}
.seg-tabs button.is-active, .seg-tabs button:hover {
  background: #fff;
  color: #196731;
  box-shadow: 0 1px 2px rgba(20, 40, 30, 0.06);
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
}
.lb-table th,
.lb-table td {
  padding: 11px 8px;
  font-size: 0.875rem;
  text-align: left;
}
.lb-table thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8a948d;
  font-weight: 600;
  border-bottom: 1px solid #e3e7e1;
}
.lb-table tbody tr {
  border-bottom: 1px dashed #e3e7e1;
  transition: background 150ms ease;
}
.lb-table tbody tr:last-child {
  border-bottom: none;
}
.lb-table tbody tr:hover {
  background: #e6f3ec;
}
.lb-table .rank-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  background: #e6f3ec;
  color: #196731;
}
.lb-table .rank-pill.is-1 {
  background: linear-gradient(135deg, #ffd86b, #f4a925);
  color: #5a3a00;
}
.lb-table .rank-pill.is-2 {
  background: linear-gradient(135deg, #e0e6e2, #c4ccc7);
  color: #2a3a32;
}
.lb-table .rank-pill.is-3 {
  background: linear-gradient(135deg, #f0c2a0, #d68f5d);
  color: #4a2a10;
}
.lb-table .progress-mini {
  height: 6px;
  width: 100%;
  background: #eef2ee;
  border-radius: 4px;
  overflow: hidden;
}
.lb-table .progress-mini span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #1f7a3a, #196731);
  border-radius: 4px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.pill--success {
  background: rgba(46, 139, 87, 0.15);
  color: rgb(38.3913513514, 116.0086486486, 72.6097297297);
}
.pill--warn {
  background: rgba(240, 180, 41, 0.2);
  color: #8a6d00;
}
.pill--danger {
  background: rgba(192, 57, 43, 0.15);
  color: #c0392b;
}
.pill--info {
  background: rgba(43, 138, 203, 0.15);
  color: #2b8acb;
}
.pill--muted {
  background: #eef2ee;
  color: #5d6b63;
}

.shortcut-tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e3e7e1;
  text-decoration: none;
  color: #1f2a25;
  transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.shortcut-tile::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--tile-soft, #e6f3ec);
  opacity: 0.4;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.shortcut-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(20, 40, 30, 0.08), 0 2px 6px rgba(20, 40, 30, 0.04);
  color: #1f2a25;
}
.shortcut-tile:hover::after {
  transform: scale(1.4);
}
.shortcut-tile .icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--tile-soft, #e6f3ec);
  color: var(--tile-color, #1f7a3a);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.shortcut-tile .text {
  position: relative;
  z-index: 1;
}
.shortcut-tile .text .t1 {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
}
.shortcut-tile .text .t2 {
  display: block;
  font-size: 0.75rem;
  color: #5d6b63;
}
.shortcut-tile--green {
  --tile-color: #1f7a3a;
  --tile-soft: #e9f7ef;
}
.shortcut-tile--blue {
  --tile-color: #2b8acb;
  --tile-soft: #e6f4f9;
}
.shortcut-tile--gold {
  --tile-color: #d8910e;
  --tile-soft: #fff4dc;
}
.shortcut-tile--rose {
  --tile-color: #c0392b;
  --tile-soft: #fce6e3;
}

.insight-swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
}
.insight-swiper .swiper-wrapper {
  box-sizing: border-box;
}
.insight-swiper .swiper-slide {
  height: auto;
}
.insight-swiper .swiper-pagination {
  position: relative;
  margin-top: 0.75rem;
}
.insight-swiper .swiper-pagination-bullet {
  background: #1f7a3a;
  opacity: 0.35;
}
.insight-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}

.insight-card {
  height: 100%;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ins-bg, #e9f7ef), #fff);
  border: 1px solid #e3e7e1;
  display: flex;
  flex-direction: column;
}
.insight-card .ins-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fff;
  color: var(--ins-color, #1f7a3a);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.insight-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.insight-card p {
  font-size: 0.8125rem;
  color: #5d6b63;
  margin-bottom: 0.75rem;
  flex: 1;
}
.insight-card .ins-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #5d6b63;
}
.insight-card .ins-foot .more {
  color: var(--ins-color, #1f7a3a);
  font-weight: 600;
  text-decoration: none;
}
.insight-card--green {
  --ins-bg: #e9f7ef;
  --ins-color: #1f7a3a;
}
.insight-card--gold {
  --ins-bg: #fff4dc;
  --ins-color: #d8910e;
}
.insight-card--blue {
  --ins-bg: #e6f4f9;
  --ins-color: #2b8acb;
}
.insight-card--rose {
  --ins-bg: #fce6e3;
  --ins-color: #c0392b;
}

.form-panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e3e7e1;
  box-shadow: 0 1px 2px rgba(20, 40, 30, 0.06);
  padding: 1.25rem 1.5rem;
}
.form-panel__title {
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
}
.form-panel__sub {
  color: #5d6b63;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.form-panel .form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1f2a25;
  margin-bottom: 6px;
}
.form-panel .req {
  color: #c0392b;
}

.radio-row,
.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.radio-row label,
.check-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #1f2a25;
  cursor: pointer;
}
.radio-row label input,
.check-row label input {
  accent-color: #1f7a3a;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px dashed #e3e7e1;
  margin-top: 0.75rem;
}

.date-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}
.date-range .sep {
  color: #5d6b63;
  font-weight: 600;
  font-size: 0.8125rem;
}
@media (max-width: 575.98px) {
  .date-range {
    grid-template-columns: 1fr;
  }
  .date-range .sep {
    display: none;
  }
}

.data-panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e3e7e1;
  box-shadow: 0 1px 2px rgba(20, 40, 30, 0.06);
  overflow: hidden;
}
.data-panel__head {
  padding: 1rem 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}
.data-panel__head h3 {
  margin: 0;
  font-size: 1.125rem;
}
.data-panel__head .meta {
  font-size: 0.8125rem;
  color: #5d6b63;
}
.data-panel__head .meta strong {
  color: #1f7a3a;
}
.data-panel__filters {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e3e7e1;
}
.data-panel__scroll {
  overflow-x: auto;
}
.data-panel__foot {
  padding: 1rem 1.25rem;
  border-top: 1px solid #e3e7e1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #5d6b63;
}

.table-modern {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.table-modern th,
.table-modern td {
  padding: 8px;
  font-size: 0.875rem;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}
.table-modern thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8a948d;
  font-weight: 600;
  background: #f9fbf8;
  border-bottom: 1px solid #e3e7e1;
}
.table-modern .table-group-divider {
  border-top-color: #8a948d;
}
.table-modern tbody tr {
  border-bottom: 1px dashed #e3e7e1;
  transition: background 150ms ease;
}
.table-modern tbody tr:last-child {
  border-bottom: none;
}
.table-modern tbody tr:hover {
  background: #e6f3ec;
}

.pager {
  display: inline-flex;
  gap: 4px;
}
.pager button,
.pager a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid #e3e7e1;
  background: #fff;
  color: #5d6b63;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 150ms ease;
}
.pager button:hover,
.pager a:hover {
  border-color: #1f7a3a;
  color: #1f7a3a;
}
.pager button.is-active,
.pager a.is-active {
  background: #1f7a3a;
  color: #fff;
  border-color: #1f7a3a;
}
.pager button[disabled],
.pager a[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.user-cell {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.user-cell .ava {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6f3ec, #fff4dc);
  color: #196731;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.user-cell .info {
  line-height: 1.2;
}
.user-cell .info .n {
  display: block;
  font-weight: 600;
  color: #1f2a25;
  font-size: 0.875rem;
}
.user-cell .info .m {
  display: block;
  font-size: 0.75rem;
  color: #5d6b63;
}

.role-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #e6f3ec;
  color: #196731;
}
.role-chip--gold {
  background: #fff4dc;
  color: #8a6d00;
}
.role-chip--blue {
  background: #e6f4f9;
  color: #1f6f9e;
}
.role-chip--rose {
  background: #fce6e3;
  color: #a0271a;
}
.role-chip--violet {
  background: #ece6fb;
  color: #4a3399;
}

.admin-footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #e3e7e1;
  background: #fff;
  font-size: 0.8125rem;
  color: #5d6b63;
}
.admin-footer strong {
  color: #196731;
}

@media (min-width: 992px) {
  .admin-shell.is-collapsed .admin-sidebar {
    width: 67px;
    overflow: visible;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-sidebar__brand .brand-text,
  .admin-shell.is-collapsed .admin-sidebar .admin-sidebar__user .info,
  .admin-shell.is-collapsed .admin-sidebar .admin-sidebar__group-title,
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-link .label,
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-link .chev {
    display: none;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-link {
    justify-content: center;
    padding: 10px;
    gap: 0;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-sidebar__user {
    justify-content: center;
    padding: 0.75rem;
    margin: 0.75rem 0.5rem 0;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-sidebar__toggle i {
    transform: rotate(180deg);
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-subnav {
    display: none;
    position: fixed;
    margin: 0;
    padding: 8px 0;
    min-width: 220px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e3e7e1;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(20, 40, 30, 0.08), 0 2px 6px rgba(20, 40, 30, 0.04);
    z-index: 1060;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-subnav .admin-sidebar__group-subtitle {
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #8a948d;
    display: block;
    margin: 0 0 0 8px;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-subnav.is-open {
    display: none;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-subnav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    border-radius: 0;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-item {
    position: relative;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-item:hover > .admin-subnav,
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-item > .admin-subnav.is-flyout-open {
    display: block;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-sidebar__scroll {
    overflow: visible;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-sidebar__scroll .admin-sidebar__nav {
    overflow: visible;
    padding: 2rem 0.75rem 0.75rem;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-link[data-tip] {
    position: relative;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-link[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    left: calc(100% + 16px);
    top: 50%;
    border: 1px solid #1f7a3a;
    transform: translateY(-50%) translateX(-4px);
    background: #e6f3ec;
    color: #1f7a3a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 60;
    box-shadow: 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-link[data-tip]::before {
    content: "";
    position: absolute;
    left: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-right-color: #1f7a3a;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 60;
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-link[data-tip]:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  .admin-shell.is-collapsed .admin-sidebar .admin-nav-link[data-tip]:hover::before {
    opacity: 1;
  }
}

.admin-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1035;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 992px) {
  .admin-backdrop {
    display: none;
  }
}

.admin-mobile-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e3e7e1;
  background: #fff;
  color: #1f2a25;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .admin-mobile-toggle {
    display: inline-flex;
  }
}

.insight-swiper {
  position: relative;
  padding-bottom: 32px;
}
.insight-swiper__pagination {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 4px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.insight-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #1f7a3a;
  opacity: 0.3;
  transition: all 150ms ease;
}
.insight-swiper .swiper-pagination-bullet-active {
  width: 24px;
  opacity: 1;
  border-radius: 4px;
}

.user-dropdown {
  min-width: 260px;
  border: 1px solid #e3e7e1;
  border-radius: 16px;
  padding: 8px 0;
  margin-top: 10px !important;
}
.user-dropdown__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 16px;
  border-bottom: 1px solid #e3e7e1;
  margin-bottom: 6px;
}
.user-dropdown__head .avatar-lg {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f7a3a, #196731);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.user-dropdown__head .n {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1f2a25;
  line-height: 1.2;
}
.user-dropdown__head .m {
  font-size: 0.75rem;
  color: #5d6b63;
}
.user-dropdown .dropdown-item {
  padding: 9px 16px;
  font-size: 0.875rem;
  color: #1f2a25;
  display: flex;
  align-items: center;
  transition: background 150ms ease;
}
.user-dropdown .dropdown-item:hover, .user-dropdown .dropdown-item:focus {
  background: #e6f3ec;
  color: #196731;
}
.user-dropdown .dropdown-item.text-danger:hover {
  background: rgba(192, 57, 43, 0.08);
  color: #c0392b;
}
.user-dropdown .dropdown-divider {
  margin: 6px 0;
  border-color: #e3e7e1;
}

.admin-topbar .topbar-user {
  border: none;
}

.notif-panel {
  width: 420px !important;
  max-width: 100vw;
  border-left: 1px solid #e3e7e1;
  background: #fff;
}
@media (max-width: 575.98px) {
  .notif-panel {
    width: 100vw !important;
  }
}
.notif-panel__head {
  padding: 0.5rem;
  border-bottom: 1px solid #e3e7e1;
}
.notif-panel__head .offcanvas-title {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
}
.notif-panel__head small strong {
  color: #1f7a3a;
}
.notif-panel__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0;
  border-bottom: 1px solid #e3e7e1;
  background: #f9fbf8;
}
.notif-panel__tabs .nav-pills {
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.notif-panel__tabs .nav-pills .nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 4px;
  border-radius: 0;
  color: #5d6b63;
  background: transparent !important;
  border: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.notif-panel__tabs .nav-pills .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #1f7a3a;
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.notif-panel__tabs .nav-pills .nav-link:hover {
  color: #196731;
}
.notif-panel__tabs .nav-pills .nav-link.active {
  color: #196731 !important;
  background: transparent !important;
}
.notif-panel__tabs .nav-pills .nav-link.active::after {
  transform: scaleX(1);
}
.notif-panel__tabs .nav-pills .nav-link.active .badge {
  background: #e6f3ec;
  color: #196731;
}
.notif-panel__tabs .nav-pills .nav-link .badge {
  font-size: 10px;
  font-weight: 700;
  background: #eef2ee;
  color: #5d6b63;
  padding: 2px 7px;
  border-radius: 999px;
}
.notif-panel__tabs .nav-pills .nav-link .badge--danger {
  background: #c0392b;
  color: #fff;
}
.notif-panel__tabs__mark,
.notif-panel__tabs .notif-panel__mark {
  flex-shrink: 0;
  font-size: 0.75rem;
  padding: 0.25rem;
}
.notif-panel__body {
  padding: 0;
  overflow-y: auto;
}
.notif-panel__foot {
  padding: 1rem 1.25rem;
  border-top: 1px solid #e3e7e1;
  background: #f9fbf8;
}

.notif-group-label {
  padding: 0.75rem 1.25rem 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8a948d;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 12px 1.25rem;
  text-decoration: none;
  color: #1f2a25;
  border-bottom: 1px solid rgba(227, 231, 225, 0.6);
  transition: background 150ms ease;
  position: relative;
}
.notif-item:hover {
  background: #e6f3ec;
  color: #1f2a25;
}
.notif-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ni-soft, #e9f7ef);
  color: var(--ni-color, #1f7a3a);
  flex-shrink: 0;
  font-size: 0.95rem;
}
.notif-item__body {
  flex: 1;
  min-width: 0;
}
.notif-item__body .t {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2a25;
  line-height: 1.3;
  margin-bottom: 3px;
}
.notif-item__body .m {
  font-size: 0.8125rem;
  color: #5d6b63;
  line-height: 1.4;
  margin-bottom: 5px;
}
.notif-item__body .time {
  font-size: 0.75rem;
  color: #8a948d;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.notif-item__body .time i {
  font-size: 10px;
}
.notif-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f7a3a;
  flex-shrink: 0;
  margin-top: 6px;
}
.notif-item.is-unread {
  background: linear-gradient(90deg, rgba(31, 122, 58, 0.04), transparent 60%);
}
.notif-item.is-unread .t {
  color: #b21f2d;
}
.notif-item--green {
  --ni-soft: #e9f7ef;
  --ni-color: #1f7a3a;
}
.notif-item--gold {
  --ni-soft: #fff4dc;
  --ni-color: #d8910e;
}
.notif-item--blue {
  --ni-soft: #e6f4f9;
  --ni-color: #2b8acb;
}
.notif-item--rose {
  --ni-soft: #fce6e3;
  --ni-color: #c0392b;
}

.profile-hero {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e3e7e1;
  box-shadow: 0 1px 2px rgba(20, 40, 30, 0.06);
  overflow: hidden;
}
.profile-hero__cover {
  height: 110px;
  background: radial-gradient(800px 200px at 10% 0%, rgba(244, 169, 37, 0.18), transparent 60%), linear-gradient(120deg, #1f7a3a, #196731 70%);
  position: relative;
}
.profile-hero__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path fill='none' stroke='rgba(255,255,255,.08)' stroke-width='1' d='M0 30h60M30 0v60'/></svg>");
  opacity: 0.5;
}
.profile-hero__body {
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
  padding: 0 1.25rem 1.25rem;
  flex-wrap: wrap;
}
.profile-hero__avatar {
  position: relative;
  margin-top: -56px;
}
.profile-hero__avatar .ava {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f7a3a, #196731);
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  box-shadow: 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
}
.profile-hero__avatar .ava-edit {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #b21f2d;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(20, 40, 30, 0.06);
}
.profile-hero__avatar .ava-edit:hover {
  background: #1f7a3a;
}
.profile-hero__meta {
  flex: 1 1 280px;
  padding-top: 0.75rem;
}
.profile-hero__meta .name {
  margin: 0;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.profile-hero__meta .role {
  color: #5d6b63;
  font-size: 0.875rem;
}
.profile-hero__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.profile-hero__stats li {
  font-size: 0.8125rem;
  color: #5d6b63;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.profile-hero__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
}
@media (max-width: 575.98px) {
  .profile-hero__avatar {
    margin: -56px auto 0;
  }
  .profile-hero__meta {
    text-align: center;
  }
  .profile-hero__meta .name, .profile-hero__meta__stats {
    justify-content: center;
  }
  .profile-hero__actions {
    width: 100%;
    justify-content: center;
  }
}

.profile-subhead {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #196731;
  margin-bottom: 0.5rem;
  padding-bottom: 6px;
  border-bottom: 1px dashed #e3e7e1;
}

.form-hint {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #5d6b63;
}

.dot-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}
.dot-indicator--green {
  background: #2e8b57;
  box-shadow: 0 0 0 3px rgba(31, 122, 58, 0.15);
}
.dot-indicator--grey {
  background: #aab2ad;
}

.empty-state__icon {
  color: #5d6b63;
}

/* ---------- Image Gallery (Crop Pest Images) ---------- */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
}

.image-card {
  background: #fff;
  border: 1px solid #e3e7e1;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.image-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -16px rgba(15, 60, 30, 0.25);
  border-color: rgba(31, 122, 58, 0.35);
}
.image-card:hover .image-card__thumb img {
  transform: scale(1.06);
}
.image-card:hover .image-card__zoom {
  opacity: 1;
}
.image-card__thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eef3ee;
}
.image-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.image-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 40, 25, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.image-card__badge i {
  font-size: 0.65rem;
  color: #ffd166;
}
.image-card__zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1f7a3a;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
.image-card__zoom:hover {
  background: #fff;
}
.image-card__body {
  padding: 0.5rem 0.5rem 14px;
}
.image-card__body h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #1f2a25;
}
.image-card__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.72rem;
  color: #5d6b63;
}
.image-card__meta i {
  color: #2e8b57;
  margin-right: 4px;
  font-size: 0.7rem;
}

.view-toggle .btn.active, .view-toggle .btn:hover {
  background: #2e8b57;
  color: #fff;
  border-color: #2e8b57;
}

.data-panel__foot {
  padding: 0.5rem;
}

.filter-offcanvas {
  width: 420px !important;
  max-width: 92vw;
}
.filter-offcanvas .offcanvas-header {
  border-bottom: 1px solid #e3e7e1;
  padding: 1rem 1.25rem;
}
.filter-offcanvas .offcanvas-title {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-offcanvas .offcanvas-body {
  padding: 1.25rem;
}
.filter-offcanvas .form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f2a25;
}
.filter-offcanvas .filter-footer {
  border-top: 1px solid #e3e7e1;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  background: rgb(248.7, 250.1, 248);
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.active-filters .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e6f3ec;
  color: #1f7a3a;
  border: 1px solid rgb(212.7702702703, 234.7297297297, 222.9054054054);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}
.active-filters .chip i {
  font-size: 0.65rem;
  cursor: pointer;
  opacity: 0.7;
}
.active-filters .chip i:hover {
  opacity: 1;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.filter-bar .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e3e7e1;
  color: #1f7a3a;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: all 150ms ease;
}
.btn-filter-toggle:hover {
  border-color: #1f7a3a;
  box-shadow: 0 2px 8px rgba(31, 122, 58, 0.1);
}
.btn-filter-toggle .count {
  background: #1f7a3a;
  color: #fff;
  font-size: 0.65rem;
  padding: 1px 7px;
  border-radius: 999px;
  margin-left: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}
.pill--danger {
  background: #fde7e7;
  color: #b42318;
}
.pill--warn {
  background: #fff4d6;
  color: #a06302;
}
.pill--success {
  background: #e6f3ec;
  color: #1f7a3a;
}

.data-panel__scroll .dataTables_wrapper {
  padding: 0;
}
.data-panel__scroll table.dataTable.table-modern {
  margin: 0 !important;
}
/* .data-panel__scroll table.dataTable thead th,
.data-panel__scroll table.dataTable thead td {
  border-bottom: 1px solid #e3e7e1 !important;
} */
.data-panel__scroll .dataTables_info,
.data-panel__scroll .dt-info {
  font-size: 0.72rem;
  color: #5d6b63;
}
.data-panel__scroll .pagination {
  margin: 0;
  gap: 4px;
  padding: 0;
}
.data-panel__scroll .pagination .page-link {
  width: 34px;
  height: 34px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 8px !important;
  border: 1px solid #e3e7e1;
  color: #5d6b63;
  background: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
}
.data-panel__scroll .pagination .page-item.active .page-link {
  background: #1f7a3a;
  border-color: #1f7a3a;
  color: #fff;
}
.data-panel__scroll .pagination .page-link:hover {
  border-color: #1f7a3a;
  color: #1f7a3a;
}
.data-panel__scroll .pagination .page-item.disabled .page-link {
  opacity: 0.4;
}

/* =========================================
   Dashboard V2 — page tabs, kpi tiles, map
   ========================================= */
.page-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid #e3e7e1;
  border-radius: 14px;
  margin: 4px 0 18px;
}
.page-tabs .nav-link {
  border: 0;
  background: transparent;
  color: #5d6b63;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.page-tabs .nav-link.active {
  background: #e6f3ec;
  color: #1f7a3a;
  box-shadow: 0 1px 2px rgba(31, 122, 58, 0.08);
}
.page-tabs .nav-link:hover:not(.active) {
  color: #1f7a3a;
}

.kpi-tile {
  position: relative;
  border-radius: 16px;
  padding: 18px 18px 16px;
  background: var(--tile-soft, #fef2f2);
  border: 1px solid var(--tile-border, rgba(0, 0, 0, 0.04));
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.kpi-tile__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.kpi-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--tile-color, #c0392b);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}
.kpi-tile__delta {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--tile-color, #c0392b);
  background: rgba(255, 255, 255, 0.6);
  padding: 4px 8px;
  border-radius: 999px;
}
.kpi-tile__label {
  font-size: 0.78rem;
  color: #5d6b63;
  margin-top: 14px;
  font-weight: 500;
}
.kpi-tile__value {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--tile-color, #1f2a25);
  line-height: 1;
  margin-top: 4px;
}
.kpi-tile__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.kpi-tile__split > div {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 6px 8px;
  text-align: center;
}
.kpi-tile__split > div .l {
  font-size: 0.65rem;
  color: #5d6b63;
  display: block;
}
.kpi-tile__split > div .v {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  color: var(--tile-color, #1f2a25);
}
.kpi-tile--rose {
  --tile-soft: #fef2f2;
  --tile-color: #dc2626;
}
.kpi-tile--orange {
  --tile-soft: #fff4e6;
  --tile-color: #ea580c;
}
.kpi-tile--amber {
  --tile-soft: #fef9c3;
  --tile-color: #b45309;
}
.kpi-tile--blue {
  --tile-soft: #eff6ff;
  --tile-color: #2563eb;
}
.kpi-tile--green {
  --tile-soft: #ecfdf5;
  --tile-color: #1f7a3a;
}
.kpi-tile--violet {
  --tile-soft: #f5f3ff;
  --tile-color: #7c3aed;
}

.map-card {
  background: #ffffff;
  border: 1px solid #e3e7e1;
  border-radius: 16px;
  padding: 18px;
}
.map-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: #1f2a25;
}

.map-placeholder {
  border-radius: 12px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px dashed rgba(31, 122, 58, 0.25);
}
.map-placeholder .icon {
  font-size: 2rem;
}
.map-placeholder .title {
  font-weight: 600;
  color: #1f2a25;
}
.map-placeholder .legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 6px;
}
.map-placeholder .legend .l-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  color: #1f2a25;
}
.map-placeholder .legend .l-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.map-placeholder .legend .l-dot.r {
  color: #dc2626;
}
.map-placeholder .legend .l-dot.o {
  color: #ea580c;
}
.map-placeholder .legend .l-dot.y {
  color: #d8910e;
}
.map-placeholder .legend .l-dot.g {
  color: #1f7a3a;
}
.map-placeholder .legend .l-dot.b {
  color: #2563eb;
}
.map-placeholder--blue {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: rgba(37, 99, 235, 0.25);
}

.rank-medal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.rank-medal i {
  color: #d8910e;
}
.rank-medal--silver i {
  color: #94a3b8;
}
.rank-medal--bronze i {
  color: #b45309;
}

.score-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.score-bar .bar {
  flex: 1;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}
.score-bar .bar span {
  display: block;
  height: 100%;
  background: #1f7a3a;
  border-radius: 999px;
}
.score-bar .val {
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #1f2a25;
  min-width: 38px;
  text-align: right;
}

/* =========================================
  Officer charge cards
   ========================================= */
   .profile-summary-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(20, 40, 30, 0.08), 0 2px 6px rgba(20, 40, 30, 0.04);
  }
  
  .profile-info-box {
    padding: 0.75rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f6f8f5);
    border: 1px solid #e3e7e1;
    height: 100%;
  }
  
  .profile-label {
    display: block;
    font-size: 0.75rem;
    color: #5d6b63;
    margin-bottom: 0.5rem;
  }
  
  .profile-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1f2a25;
    line-height: 1.4;
  }
  
  .toolbar-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 2px 6px rgba(20, 40, 30, 0.06), 0 1px 2px rgba(20, 40, 30, 0.04);
  }
  
  .search-field {
    position: relative;
  }
  .search-field i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #5d6b63;
    font-size: 0.95rem;
  }
  .search-field .form-control {
    height: 58px;
    border-radius: 16px;
    border: 1px solid #e3e7e1;
    padding-left: 3rem;
    font-size: 0.96rem;
    font-weight: 500;
    box-shadow: none;
  }
  .search-field .form-control:focus {
    border-color: #1f7a3a;
    box-shadow: 0 0 0 4px rgba(31, 122, 58, 0.08);
  }
  
  .filter-btn {
    border: none;
    background: #f3f5f9;
    color: #1f2a25;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.86rem;
    font-weight: 700;
    transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .filter-btn:hover {
    background: rgba(31, 122, 58, 0.08);
    color: #1f7a3a;
  }
  .filter-btn.active {
    background: linear-gradient(135deg, #1f7a3a, #196731);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(20, 40, 30, 0.08), 0 2px 6px rgba(20, 40, 30, 0.04);
  }
  
  .village-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 0.75rem;
    height: 100%;
    transition: all 0.35s ease;
    background: linear-gradient(145deg, #ffffff, #c4ffdf);
    border: 1px solid rgba(31, 122, 58, 0.12);
  }
  .village-card .village-name,
  .village-card .village-meta-item h6 {
    color: #1f2a25;
  }
  .village-card .village-meta-item {
    background-color: #e6f3ec;
  }
  .village-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(20, 40, 30, 0.1), 0 4px 12px rgba(20, 40, 30, 0.06);
    border-color: #1f7a3a;
  }
  .village-card:hover .card-link-icon {
    transform: rotate(0deg) scale(1.08);
    background: #1f7a3a;
    color: #ffffff;
  }
  
  .card-link-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(31, 122, 58, 0.08);
    color: #1f7a3a;
    transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(-8deg);
  }
  .card-link-icon i {
    font-size: 1rem;
  }
  
  .village-card-body {
    margin-top: 0.5rem;
  }
  
  .village-top {
    margin-bottom: 1.5rem;
  }
  
  .village-label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
  
  .village-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
  }
  
  .village-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  h6 {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
  }
  
  .meta-title {
    display: block;
    font-size: 0.75rem;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .profile-summary-card,
    .toolbar-card {
      padding: 1rem;
    }
    .village-card {
      padding: 1.25rem;
    }
    .village-name {
      font-size: 1.375rem;
    }
  }
  @media (max-width: 768px) {
    .village-meta-grid {
      grid-template-columns: 1fr;
    }
    .filter-btn {
      width: 100%;
    }
    .card-link-icon {
      width: 38px;
      height: 38px;
    }
  }

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