/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@400;500;700;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d1a40;
  --navy-800: #132050;
  --navy-700: #1a2d5a;
  --navy-600: #213870;
  --navy-500: #2a4080;
  --navy-400: #3d5a9e;
  --navy-300: #5a7abf;
  --white: #ffffff;
  --gray-50: #f7f8fc;
  --gray-100: #eef1f7;
  --gray-200: #dde2ed;
  --gray-300: #b8c1d4;
  --gray-400: #8e99b3;
  --gray-500: #6b7a99;
  --gray-600: #4d5a73;
  --gray-700: #3d4a63;
  --green-500: #10b981;
  --green-400: #34d399;
  --red-500: #ef4444;
  --amber-500: #f59e0b;
  --gold: #d4a017;
  --gold-light: #e6b82a;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,.18);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Yantramanav', 'Roboto', sans-serif;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--gray-50);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 50%, var(--navy-500) 100%);
  color: var(--white);
  padding: 48px 24px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,64,128,.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero p {
  font-size: clamp(14px, 2.5vw, 18px);
  color: rgba(255,255,255,.7);
  margin-top: 12px;
  position: relative;
  z-index: 1;
  max-width: 500px;
}
.hero-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.hero-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  padding: 3px;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  padding: 24px 0 60px;
}
@media (max-width: 968px) {
  .main-layout { grid-template-columns: 1fr; }
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-body { padding: 24px; }
.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-title .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.card-title .icon.sun { background: #fef3c7; color: #d97706; }
.card-title .icon.wind { background: #dbeafe; color: #2563eb; }
.card-title .icon.map { background: #d1fae5; color: #059669; }
.card-title .icon.chart { background: #ede9fe; color: #7c3aed; }
.card-title .icon.settings { background: #f3f4f6; color: #4b5563; }

/* ===== TECH TOGGLE ===== */
.tech-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.tech-toggle button {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--gray-500);
  background: transparent;
}
.tech-toggle button.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* ===== FORM INPUTS ===== */
.input-section { margin-bottom: 20px; }
.input-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .input-grid { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full-width { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.field label .value-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}
.field input[type="text"],
.field input[type="number"],
.field input[type="email"],
.field input[type="password"],
.field select {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  transition: all var(--transition);
  font-family: inherit;
  width: 100%;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(42,64,128,.12);
}

/* ===== SLIDERS ===== */
.slider-field { display: flex; flex-direction: column; gap: 6px; }
.slider-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-wrap {
  position: relative;
  padding: 4px 0;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  outline: none;
  transition: background var(--transition);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: transform 0.15s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:active::after { background: rgba(0,0,0,.05); }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(13,26,64,.3);
}
.btn-primary:hover {
  background: var(--navy-700);
  box-shadow: 0 4px 16px rgba(13,26,64,.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(212,160,23,.3);
}
.btn-gold:hover {
  box-shadow: 0 4px 16px rgba(212,160,23,.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--navy-400);
  background: var(--gray-50);
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none !important;
}
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-sm);
}

/* ===== CALCULATE BUTTON ===== */
.calculate-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(13,26,64,.25);
  position: relative;
  overflow: hidden;
}
.calculate-btn:hover {
  box-shadow: 0 6px 24px rgba(13,26,64,.35);
  transform: translateY(-2px);
}
.calculate-btn:active { transform: translateY(0); }
.calculate-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}
.calculate-btn .pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

/* ===== KPI GRID ===== */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.kpi-card {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.kpi-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.kpi-card.highlight {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.kpi-card.highlight .kpi-label { color: rgba(255,255,255,.7); }
.kpi-card.highlight .kpi-value { color: var(--white); }
.kpi-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.kpi-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.5px;
}

/* ===== IRR RING ===== */
.irr-ring-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.irr-ring {
  width: 160px;
  height: 160px;
  position: relative;
}
.irr-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.irr-ring .ring-bg {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 10;
}
.irr-ring .ring-fill {
  fill: none;
  stroke: var(--navy);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s cubic-bezier(.4,0,.2,1);
}
.irr-ring .ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.irr-ring .ring-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
}
.irr-ring .ring-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 2px;
  overflow: visible;
  padding: 4px;
  background: var(--gray-100);
  border-radius: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 10px 18px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: 10px;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.tab-wrapper {
  position: relative;
  display: inline-flex;
}
.tab-locked {
  opacity: 0.5;
  cursor: not-allowed !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tab-lock-icon {
  flex-shrink: 0;
  opacity: 0.7;
}
.tab-lock-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  z-index: 9999;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.tab-lock-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
}
.tab-wrapper:hover .tab-lock-tooltip {
  display: block;
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}
.cf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.cf-table th {
  background: var(--navy);
  color: var(--white);
  padding: 10px 12px;
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 2;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.cf-table th:first-child { text-align: center; border-radius: 0; }
.cf-table td {
  padding: 8px 12px;
  text-align: right;
  border-bottom: 1px solid var(--gray-100);
  white-space: nowrap;
  font-weight: 500;
}
.cf-table td:first-child {
  text-align: center;
  font-weight: 700;
  color: var(--navy);
}
.cf-table tr:hover td { background: var(--gray-50); }
.cf-table tr:last-child td { border-bottom: none; }

/* ===== SOURCES & USES ===== */
.su-table { width: 100%; font-size: 14px; }
.su-table td { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.su-table td:last-child {
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.su-table .su-header td {
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-400);
  border-bottom: 2px solid var(--gray-200);
  padding-top: 20px;
}
.su-table .su-total td {
  border-top: 2px solid var(--navy);
  border-bottom: none;
  font-weight: 800;
  color: var(--navy);
  font-size: 15px;
}

/* ===== SENSITIVITY TABLE ===== */
.sens-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.sens-table th {
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.sens-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
}
.sens-table tr:hover td { background: var(--gray-50); }
.sens-base { font-weight: 700 !important; background: var(--gray-50); }

/* ===== RIGHT PANEL ===== */
.right-panel { position: sticky; top: 96px; }
.right-panel .card { margin-bottom: 16px; }
.service-list { list-style: none; }
.service-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.service-list li:last-child { border-bottom: none; }

/* ===== DISCLAIMER ===== */
.disclaimer {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 12px;
  color: #78350f;
  line-height: 1.7;
}
.disclaimer strong { color: #92400e; }

/* ===== AUTH FORM ===== */
.auth-form { display: flex; flex-direction: column; gap: 10px; }
.auth-form input {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: all var(--transition);
}
.auth-form input:focus {
  outline: none;
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(42,64,128,.12);
}

/* ===== MAP ===== */
.map-search-wrapper {
  position: relative;
  margin-bottom: 8px;
}
.map-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.map-search-icon {
  position: absolute;
  left: 12px;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.map-search-input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.map-search-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}
.map-search-input::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}
.map-search-spinner {
  position: absolute;
  right: 12px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.map-search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: 240px;
  overflow-y: auto;
}
.map-search-suggestion {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid var(--gray-100);
}
.map-search-suggestion:last-child {
  border-bottom: none;
}
.map-search-suggestion:hover {
  background: var(--gray-50);
}
.suggestion-icon {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}
.suggestion-text {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.4;
}
.map-container {
  height: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 32px 0;
  text-align: center;
  font-size: 13px;
}
.footer a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}
.footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* ===== ACTION BAR ===== */
.action-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.action-bar-prominent {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, var(--gray-50) 0%, rgba(212,160,23,0.04) 100%);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  animation: slideUpFade 0.4s ease-out;
}
.action-bar-prominent .btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.btn-sensitivity {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gold);
  position: relative;
}
.btn-sensitivity:hover {
  background: rgba(212,160,23,0.08);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,160,23,0.2);
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CHART TITLES ===== */
.chart-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-600);
  margin: 20px 0 4px 0;
}
.chart-title:first-child {
  margin-top: 0;
}

/* ===== CHART CONTAINER ===== */
.chart-container {
  width: 100%;
  height: 320px;
  margin: 16px 0;
}
@media (max-width: 500px) {
  .chart-container { height: 240px; }
}

/* ===== COORD BADGE ===== */
.coord-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.coord-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.fade-in { animation: fadeIn .4s ease-out both; }
.slide-up { animation: slideUp .5s ease-out both; }
.stagger-1 { animation-delay: .05s; }
.stagger-2 { animation-delay: .1s; }
.stagger-3 { animation-delay: .15s; }
.stagger-4 { animation-delay: .2s; }
.stagger-5 { animation-delay: .25s; }

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

/* ===== USER STATUS ===== */
.user-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.user-email {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

/* ===== RESOURCE BADGES ===== */
.resource-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  vertical-align: middle;
}
.resource-badge.success {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}
.resource-badge.error {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}
.resource-badge.loading {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  animation: pulse-badge 1.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.wind-info-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(13, 26, 64, 0.04), rgba(13, 26, 64, 0.08));
  border-radius: var(--radius-xs);
  font-size: 12px;
  color: var(--navy-600);
  margin-top: 4px;
  border-left: 3px solid var(--navy-400);
}
.wind-info-bar .wind-arrow {
  color: var(--gray-400);
  font-weight: 700;
}

.coord-loading {
  display: inline-block;
  margin-left: 10px;
  font-size: 11px;
  font-weight: 500;
  color: #2563eb;
  animation: pulse-badge 1.5s ease-in-out infinite;
}

.map-hint {
  margin-top: 8px;
  font-size: 11px;
  color: var(--gray-400);
  font-style: italic;
}

/* ===== GIA HEADER ===== */
.gia-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.gia-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.gia-header-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.gia-header-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.gia-header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.gia-nav-link {
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gia-nav-link:hover {
  color: var(--navy);
  background: var(--gray-100);
}
.gia-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.gia-nav-trigger.active {
  color: var(--navy);
  background: var(--gray-100);
}
.gia-nav-chevron {
  transition: transform 0.2s;
  opacity: 0.5;
}
.gia-nav-trigger.active .gia-nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.gia-nav-dropdown {
  position: relative;
}
.gia-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border: 1px solid var(--gray-200);
  padding: 8px;
  z-index: 100;
  animation: dropdownFadeIn 0.15s ease;
}
@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.gia-nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--transition);
  text-transform: none;
  letter-spacing: 0;
}
.gia-nav-dropdown-item:hover {
  background: var(--gray-100);
  color: var(--navy);
}
.gia-nav-separator {
  width: 1px;
  height: 24px;
  background: var(--gray-200);
  margin: 0 6px;
}
.gia-nav-tool {
  color: var(--navy);
  font-weight: 700;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.gia-nav-tool:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.gia-nav-admin {
  color: var(--gold);
}
.gia-nav-admin:hover {
  color: var(--gold);
  background: rgba(212,160,23,.08);
}
.gia-nav-signin {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  text-transform: none;
  letter-spacing: 0;
}
.gia-nav-signin:hover {
  background: var(--navy-700);
}
.gia-header-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  background: var(--gray-50);
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  margin-left: 4px;
}
.gia-header-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.gia-header-email {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gia-header-menu-btn {
  display: none;
  background: var(--navy);
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.gia-hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: background 0.2s;
}
.gia-hamburger::before,
.gia-hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}
.gia-hamburger::before { top: -6px; }
.gia-hamburger::after { top: 6px; }
.gia-hamburger.open { background: transparent; }
.gia-hamburger.open::before { transform: rotate(45deg); top: 0; }
.gia-hamburger.open::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 900px) {
  .gia-header-menu-btn { display: flex; }
  .gia-header-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 2px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
  }
  .gia-header-nav.open { display: flex; }
  .gia-nav-link {
    padding: 14px 16px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
  }
  .gia-nav-link:last-child { border-bottom: none; }
  .gia-nav-separator { width: 100%; height: 1px; background: var(--gray-200); margin: 8px 0; }
  .gia-nav-dropdown-menu {
    position: static;
    background: var(--gray-50);
    box-shadow: none;
    border: none;
    margin-top: 4px;
    border-radius: 8px;
  }
  .gia-header-user { width: 100%; justify-content: center; padding: 12px; margin-left: 0; }
}

/* ===== GIA FOOTER ===== */
.gia-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
}
.gia-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 32px;
}
.gia-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 48px;
}
.gia-footer-col-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 18px;
}
.gia-footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.gia-footer-social {
  display: flex;
  gap: 12px;
}
.gia-footer-social a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.gia-footer-social a:hover {
  color: var(--white);
}
.gia-footer-links {
  list-style: none;
}
.gia-footer-links li {
  margin-bottom: 12px;
}
.gia-footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.gia-footer-links a:hover {
  color: var(--white);
}
.gia-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.gia-footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(255,255,255,.35);
}
.gia-footer-contact li a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--transition);
}
.gia-footer-contact li a:hover {
  color: var(--white);
}
.gia-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.gia-footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gia-footer-bottom-left a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
}
.gia-footer-bottom-left a:hover {
  color: var(--white);
}
.gia-footer-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}
.gia-footer-disclaimer {
  color: rgba(255,255,255,.3);
  font-size: 11px;
}
@media (max-width: 768px) {
  .gia-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .gia-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gia-footer-bottom { flex-direction: column; text-align: center; }
  .gia-footer-bottom-left { flex-direction: column; }
}

/* ===== ADMIN PAGE ===== */
.admin-page {
  min-height: 60vh;
}
.admin-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 40px 24px;
}
.admin-header h1 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.admin-header p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
}
.admin-login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 24px;
}
.admin-login-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.admin-login-card .form-group {
  margin-bottom: 16px;
}
.admin-login-card .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  letter-spacing: 2px;
}
.admin-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  gap: 16px;
  color: var(--gray-500);
  font-size: 14px;
}
.admin-search-input {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  transition: all var(--transition);
  font-family: inherit;
}
.admin-search-input:focus {
  outline: none;
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(42,64,128,.12);
}
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.admin-stat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.admin-stat-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
}
.admin-stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-top: 4px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
  color: var(--gray-700);
}
.admin-table tr:hover td { background: var(--gray-50); }
.admin-log-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}
.admin-log-row:last-child { border-bottom: none; }
.admin-log-action {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  background: rgba(13,26,64,.08);
  color: var(--navy);
}
.admin-action-signup { background: rgba(16,185,129,.12); color: #059669; }
.admin-action-login { background: rgba(59,130,246,.12); color: #2563eb; }
.admin-action-create_project { background: rgba(212,160,23,.12); color: #b8860b; }
.admin-action-update_project { background: rgba(139,92,246,.12); color: #7c3aed; }
.admin-action-delete_project { background: rgba(239,68,68,.12); color: #dc2626; }
.admin-action-checklist_update { background: rgba(16,185,129,.08); color: #047857; }
.admin-log-email {
  flex: 1;
  font-weight: 600;
  color: var(--navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-log-date {
  font-size: 12px;
  color: var(--gray-400);
  white-space: nowrap;
}

/* ===== DASHBOARD ===== */
.dash-page { min-height: 60vh; }
.dash-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 50%, var(--navy-500) 100%);
  color: var(--white);
  padding: 40px 24px 36px;
  position: relative;
  overflow: hidden;
}
.dash-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.12) 0%, transparent 70%);
  pointer-events: none;
}
.dash-hero h1 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.dash-hero p {
  font-size: clamp(14px, 2.5vw, 16px);
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}
.dash-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  padding: 24px 0 60px;
}
.dash-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  gap: 16px;
  color: var(--gray-500);
  font-size: 14px;
}
.dash-action-msg {
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}
.dash-tabs {
  display: flex;
  gap: 4px;
  background: var(--gray-100);
  border-radius: 10px;
  padding: 3px;
}
.dash-tab {
  padding: 8px 18px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: 8px;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}
.dash-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.dash-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--gray-200);
}
.dash-empty-icon { font-size: 48px; margin-bottom: 16px; }
.dash-empty h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.dash-empty p { font-size: 14px; color: var(--gray-500); }
.dash-project-list { display: flex; flex-direction: column; gap: 12px; }
.dash-project-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  padding: 18px 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.dash-project-card:hover {
  border-color: var(--navy-400);
  box-shadow: var(--shadow-md);
}
.dash-project-card.selected {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(13,26,64,.12);
}
.dash-project-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.dash-project-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.dash-project-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.dash-project-meta {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}
.dash-project-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.dash-action-btn {
  padding: 5px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.dash-action-btn:hover {
  border-color: var(--navy-400);
  color: var(--navy);
  background: var(--gray-50);
}
.dash-action-danger { color: var(--red-500); }
.dash-action-danger:hover { border-color: var(--red-500); color: var(--red-500); background: #fef2f2; }

.dash-sidebar { position: sticky; top: 96px; }
.dash-sidebar .card { margin-bottom: 16px; }

.dash-checklist-card .card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}
.dash-checklist-progress {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-400);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 12px;
}
.dash-checklist-bar-wrap { margin-bottom: 16px; }
.dash-checklist-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}
.dash-checklist-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 0.4s ease;
}
.dash-checklist { list-style: none; }
.dash-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-600);
  cursor: pointer;
  transition: color var(--transition);
  user-select: none;
}
.dash-checklist-item:last-child { border-bottom: none; }
.dash-checklist-item:hover { color: var(--navy); }
.dash-checklist-item.checked { color: var(--gray-400); text-decoration: line-through; }
.dash-check-box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  transition: all var(--transition);
}
.dash-checklist-item.checked .dash-check-box {
  background: var(--navy);
  border-color: var(--navy);
}

.dash-profile-form { display: flex; flex-direction: column; gap: 10px; }
.dash-profile-view {}
.dash-profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}
.dash-profile-row:last-child { border-bottom: none; }
.dash-profile-label { color: var(--gray-400); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-profile-value { color: var(--navy); font-weight: 600; }

.dash-team-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.dash-team-members { list-style: none; }
.dash-team-member {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.dash-team-member:last-child { border-bottom: none; }
.dash-member-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.dash-member-info { display: flex; flex-direction: column; overflow: hidden; }
.dash-member-email {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dash-member-role {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ===== MOBILE OPTIMIZE ===== */
@media (max-width: 968px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
}
@media (max-width: 500px) {
  .hero { padding: 32px 16px; }
  .card-body { padding: 16px; }
  .card-header { padding: 14px 16px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .kpi-value { font-size: 18px; }
  .kpi-card { padding: 12px; }
  .action-bar { flex-direction: column; }
  .action-bar .btn { width: 100%; }
  .action-bar-prominent { flex-direction: column; padding: 16px; }
  .action-bar-prominent .btn { width: 100%; min-width: unset; }
  .tabs { gap: 0; }
  .tab { padding: 8px 12px; font-size: 12px; }
  .irr-ring { width: 130px; height: 130px; }
  .irr-ring .ring-value { font-size: 22px; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .admin-header { padding: 28px 16px; }
  .admin-header h1 { font-size: 22px; }
  .dash-hero { padding: 28px 16px; }
  .dash-hero h1 { font-size: 22px; }
  .dash-toolbar { flex-direction: column; align-items: stretch; }
  .dash-project-actions { flex-wrap: wrap; }
}

/* ===== INVITE PAGE ===== */
.invite-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-50) 0%, rgba(13,26,64,0.03) 100%);
  padding: 24px;
}
.invite-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  animation: slideUpFade 0.4s ease-out;
}
.invite-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.invite-card h2 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 8px;
}
.invite-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.invite-auth-tabs {
  display: flex;
  gap: 0;
  margin: 20px 0 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
}
.invite-auth-tab {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: var(--gray-50);
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.invite-auth-tab.active {
  background: var(--navy);
  color: var(--white);
}
.invite-auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.invite-error {
  color: var(--red-500, #dc2626);
  font-size: 13px;
  margin: 0;
  text-align: left;
}

/* ===== PENDING INVITATIONS BANNER ===== */
.pending-invitations {
  margin-bottom: 24px;
}
.invitation-card {
  background: linear-gradient(135deg, rgba(212,160,23,0.06) 0%, rgba(13,26,64,0.03) 100%);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  animation: slideUpFade 0.3s ease-out;
}
.invitation-card-info {
  flex: 1;
}
.invitation-card-info strong {
  color: var(--navy);
  font-size: 14px;
}
.invitation-card-info p {
  color: var(--gray-500);
  font-size: 12px;
  margin: 2px 0 0;
}

/* ===== TEAM PROJECTS SECTION ===== */
.team-projects-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1.5px solid var(--gray-200);
}
.team-projects-section h3 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-project-badge {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}

.cta-insight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(212,160,23,0.06), rgba(13,26,64,0.04));
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
}
.cta-insight-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.cta-insight strong {
  color: var(--navy-700);
}
.cta-insight-btn {
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
  text-decoration: none;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--gray-50);
}
.auth-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./node_modules/leaflet/dist/leaflet.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************/
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/_next/static/media/layers.ef6db872.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/_next/static/media/layers-2x.9859cd12.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(/_next/static/media/marker-icon.d577052a.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

