/* ------------------------------------------------------- CAASie-Pixel CSS for Bunting Lah Map Page Paste into styles.css (or Divi Custom CSS) --------------------------------------------------------*/ /* Base / Font */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap'); :root{ --bg-very-dark: #071b20; /* main sidebar bg */ --panel-dark: #0e2a2f; /* inner card bg */ --panel-darker: #082025; --accent: #19e07a; /* neon green */ --muted: #9bb7b0; --glass: rgba(8,34,36,0.84); --glass-2: rgba(9,38,41,0.7); --card-border: rgba(255,255,255,0.04); --card-shadow: 0 14px 40px rgba(6,22,23,0.6); --rounded: 18px; } *{box-sizing:border-box} html,body{height:100%;width:100%;margin:0;padding:0;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;background:#fff} /* ---- Page Container (Map + Sidebar) ---- */* ---- MAP ---- */
.map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Top centered search bar on map */ 
.map-search {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 200px);
  z-index: 150; /* keep below details panel */
  width: 520px;
  background: linear-gradient(180deg, rgba(9,38,41,0.95), rgba(8,32,34,0.9));
  padding: 12px 14px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(6,22,23,0.45);
  border: 1px solid rgba(255,255,255,0.03);
}

/* Move country-picker inside search flex layout */
.map-search .country-picker {
  position: relative;   /* relative to flex container */
  top: 0; left: 0;     /* aligned naturally */
  z-index: 160;         /* below details panel */
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  color: #cdeedd;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.02);
}
.map-search .search-input{ flex:1; background:transparent; border:none; color:#dff8ef; font-size:15px; outline:none; } 

 /* ---- SIDEBAR ---- */ .sidebar {
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 40px;
  width: 440px;
  z-index: 200; background: linear-gradient(180deg, rgba(6,24,26,0.92), rgba(8,32,34,0.90)); border-radius:20px; padding:22px; box-shadow: 0 18px 50px rgba(3,15,16,0.6); border: 1px solid rgba(255,255,255,0.02); display:flex; flex-direction:column; } /* header */ .back-button {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  color: #eafaf4;
  cursor: pointer;
  margin-bottom: 16px; 
    border: none;            
  background: transparent;  
  padding: 0;              
  width: auto;  
  height: auto; 
  line-height: 1;  
  user-select: none;
  transition: color 0.2s ease;
align-self: flex-start; 
gap: 5px;               /* small gap between arrow and house */
}

.back-button b {
  font-size: 10px;       /* bold arrow */
}

.back-button:hover {
  color: #19e07a; 

} /* title */ .sidebar h1{ font-size:40px; line-height:1; color:#eafaf4; margin:10px 0 16px 0; font-weight:900; } .sidebar h1 .bold{ color:var(--accent); } /* listing scroll area */ .list-scroll { overflow-y:auto; margin-right: -26px;
  padding-right: 26px; flex:1; margin-bottom:8px; } /* scrollbar exact styling */ .list-scroll::-webkit-scrollbar{ width:10px } .list-scroll::-webkit-scrollbar-thumb{ background:var(--accent); border-radius:10px; box-shadow: inset 0 0 6px rgba(0,0,0,0.2) } .list-scroll::-webkit-scrollbar-track{ background:transparent } /* result card layout */ .result-card{ display:flex; gap:18px; padding: 14px 16px 14px 14px; margin: 12px -11px 15px 0; background: linear-gradient(180deg, rgba(6,26,29,0.74), rgba(8,34,36,0.64)); border-radius:16px; border:1px solid rgba(255,255,255,0.03); margin-bottom:14px; box-shadow:0 8px 28px rgba(3,12,12,0.45); align-items:center; position: relative;
  top: 0;
  transition:
    top 0.12s ease,
    box-shadow 0.12s ease;
} .result-card:hover{ top: -3px;
  box-shadow: 0 18px 44px rgba(3,12,12,0.62);
} /* left image */ .result-card .thumb{ width: 112px;
  height: 112px; border-radius:12px; overflow:hidden; background:#dde1e0; flex-shrink:0; border:1px solid rgba(255,255,255,0.03); box-shadow: inset 0 2px 6px rgba(0,0,0,0.15); } .result-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: translateZ(0);   /* ⬅ image stays static */
} .result-card .meta {
  flex: 1;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 3px; /* 👈 controls ALL vertical spacing */
}

/* board type */
.meta .type {
  font-weight: 700;
  color: #cfeee0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* board ID / name */
.meta .id {
  color: #93cdc1;
  font-size: 13px;
  line-height: 1.25;
}

/* vendor */
.meta .vendor {
  color: #b7e9d7;
  font-weight: 600;
  font-size: 13px;
}

/* location */
.meta .location {
  color: #99c7bf;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.25;
}

/* pagination footer inside sidebar */
.sidebar-footer {
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9ebfb4;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.02);
} /* small nav buttons */ .small-btn{ background:transparent;border:1px solid rgba(255,255,255,0.03); color:#cfeee0; padding:8px 12px;border-radius:10px; cursor:pointer } /* ---- floating bottom preview panel (map side) ---- */ .preview-panel{ position:absolute; right:36px; bottom:28px; width:520px; background:linear-gradient(180deg, rgba(6,24,27,0.88), rgba(8,34,36,0.82)); border-radius:18px; padding:18px 22px; box-shadow:0 18px 48px rgba(3,12,12,0.6); border:1px solid rgba(255,255,255,0.03); z-index:55; } /* preview text */ .preview-panel h3{ color:#e6fbf2; margin:0 0 8px 0 } .preview-panel p{ color:#bcdccb; margin:0 0 12px 0; font-size:14px } /* CTA group */ .preview-actions{ display:flex; gap:12px; align-items:center } .cta-green{ background:transparent; border:2px solid var(--accent); color:var(--accent); padding:10px 14px; border-radius:12px; font-weight:700; cursor:pointer; } .cta-ghost{ background:transparent;color:#cfeee0;border:none;padding:10px 12px;font-weight:600;cursor:pointer } /* ---- Marker cluster / marker label sizing helpers (if using mapbox layers) ---- */ .cluster-count{ background:transparent; color:#ffffff; /* make label white so it's readable */ padding:6px 10px; border-radius:20px; border: 2px solid rgba(255,255,255,0.03); font-weight:700; box-shadow:0 6px 18px rgba(2,8,8,0.5); } 

.details-panel-wrap {
  position: absolute;
  top: 20px;
  bottom: 40px;
  right: 20px;
  width: 400px;
  max-width: 100%;
  z-index: 3000;
  pointer-events: auto;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(.2,.9,.2,1), opacity 0.32s ease;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0); /* wrapper transparent */
}

.details-panel-wrap.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.details-panel {
  flex: 1 1 auto;
  padding: 18px;
  background: linear-gradient(180deg, rgba(6,24,26,0.98), rgba(8,32,34,0.96));
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.02);
  overflow-y: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.details-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--accent);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Carousel fixes */
.details-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #222;
}

.details-carousel {
  display: flex;
  transition: transform 0.35s ease;
  width: 100%;
  height: 100%;
}

.details-carousel img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  user-select: none;
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

/* Content text */
.details-inner { margin-top: 10px; padding-top: 10px; } 
.details-body { margin-top: 14px; color: var(--muted); font-size: 14px; } 
.details-type { font-size: 12px; font-weight: 700; color: #cfeee0; margin-bottom: 8px; } 
.details-name { font-size: 22px; margin: 6px 0; font-weight: 700; color: #eafaf4; } 
.details-vendor { color: #b7e9d7; font-weight: 600; margin-top: 6px; } 
.details-location, .details-landmark { margin-top: 10px; color: #d9f7d5; font-size: 14px; } 
.details-size, .details-traffic { margin-top: 10px; color: #d9f7d5; font-size: 14px; } 
.details-description { margin-top: 14px; padding: 12px; background: rgba(255, 255, 255, 0.08); border-radius: 10px; color: #FFD86B; /* yellowish highlight */ font-size: 14px; line-height: 1.4; }
.details-streetview { display:inline-block; margin-top:14px; padding:8px 12px; border-radius:10px; color: var(--accent); border: 1px solid rgba(25,224,122,0.12); text-decoration: none; font-weight:700; background: transparent; }

/* Contact buttons */
.details-contact {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.contact-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 700;
  cursor: pointer;
}

/* ===============================
   CONTACT BUTTONS – ORIGINAL STYLE
   =============================== */

.details-contact {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

/* Base button */
.contact-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px; /* rectangular, same family as Street View */
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);

  font-size: 14px;
  font-weight: 700;
  cursor: pointer;

  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}

/* WhatsApp */
.contact-btn.wa {
  color: var(--accent);
  border-color: rgba(25,224,122,0.28);
}

/* Email */
.contact-btn.email {
  color: #ffd86b;
  border-color: rgba(255,216,107,0.28);
}

/* Hover – subtle, no glow */
.contact-btn:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* Active press */
.contact-btn:active {
  transform: translateY(0);
}

.details-seemore {
  display: block;          /* ensures it’s on its own line */
  margin-top: 1rem;        /* spacing below buttons */
  text-align: right;       /* align text to the right */
  color: #19e07a;
  font-weight: 600;
  text-decoration: none;
}

.details-seemore:hover {
  text-decoration: underline;
}

/* ===============================
   IMAGE LIGHTBOX POPUP
   =============================== */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.image-lightbox.active {
  display: block;
}

/* dark background */
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 14, 0.75);
  backdrop-filter: blur(4px);
}

/* image container */
.lightbox-content {
  position: absolute;
  inset: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);

  /* keep image crisp */
  object-fit: contain;
  image-rendering: auto;
}

/* close button */
.image-lightbox .lightbox-close {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #19e07a;
  border: none;
  font-size: 26px;
  line-height: 40px;
  cursor: pointer;
  z-index: 3;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #19e07a;
  font-size: 22px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
/* ===============================
   SIDEBAR HEADER + FILTER BUTTON
   =============================== */

.page-root .sidebar-header {
  display: flex;
  align-items: center;              /* FIX */
  justify-content: space-between;
  margin-bottom: 4px;
}

/* Title + button row */
.page-root .sidebar-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Title tuning (important) */
.page-root .sidebar h1 {
  line-height: 1.05;
  margin: 0;
}
/* ===============================
   FILTER MODAL (AIRBNB STYLE)
   =============================== */

.filter-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 22, 0.45);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
}

.filter-sheet {
  position: absolute;
  top: 85px;
  left: 480px;
  width: 360px;

  background: linear-gradient(
    180deg,
    rgba(9,38,41,0.98),
    rgba(8,32,34,0.96)
  );
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

/* Header */
.filter-header {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #eafaf4;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.filter-header button {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--accent);
  cursor: pointer;
}

/* Body */
.filter-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Groups */
.filter-group label {
  font-size: 13px;
  font-weight: 700;
  color: #cfeee0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.filter-group select,
.filter-group input[type="range"] {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px;
  color: #eafaf4;
  outline: none;
}
.filter-group select option {
  color: #0b3b33;
  background: #ffffff;
}

.filter-group select option:checked {
  background: #e8f7f0;
  font-weight: 600;
}
/* Slider polish */
.filter-group input[type="range"] {
  padding: 0;
  accent-color: var(--accent);
}

/* Actions */
.filter-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.filter-clear {
  background: transparent;
  border: none;
  color: #9bb7b0;
  font-weight: 600;
  cursor: pointer;
}

.filter-apply {
  flex: 1;
  background: rgba(25,224,122,0.15);
  border: 1px solid rgba(25,224,122,0.35);
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}
/* ===============================
   FILTER BUTTON (OPTICALLY CORRECT)
   =============================== */

.page-root .filter-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(25, 224, 122, 0.12);
  border: 1px solid rgba(25, 224, 122, 0.35);
  color: var(--accent);

  cursor: pointer;
  transform: translateY(-6px);

  transition: background 0.2s ease, transform 0.15s ease;
}

/* Icon sizing */
.page-root .filter-btn svg {
  width: 18px;
  height: 18px;
}

/* Hover polish */
.page-root .filter-btn:hover {
  background: rgba(25, 224, 122, 0.2);
  transform: translateY(-5px);
}


/* ===============================
   FILTER TYPE – CHECKBOX PILLS
   =============================== */

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.checkbox-pill {
  position: relative;
}

.checkbox-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-pill span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #cfeee0;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);

  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.checkbox-pill input:checked + span {
  background: rgba(25,224,122,0.18);
  border-color: rgba(25,224,122,0.45);
  color: var(--accent);
}
.result-card.active {
  background: rgba(25, 224, 122, 0.07);
}
/* ===============================
   TRUE FULLSCREEN – FLOAT SAFE
   =============================== */

html, body, #page-container, #et-main-area, #main-content, .page-root {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden !important;
    position: relative;
}

/* Divi containers should NOT clip */
#page-container,
#et-main-area,
#main-content {
  height: 100vh;
  overflow: visible !important;
}

/* Your app root controls clipping */
.page-root {
  position: relative;
   inset: 0;
  width: 100%;
  height: 100vh;
  overflow: visible;
z-index: 50;
}

body.admin-bar .page-root {
  height: calc(100vh - 32px);
}


/* ===============================
   FLOATING MAP TOOLBAR
   =============================== */

.map-toolbar {
  position: absolute;
  top: 90px;            /* below search bar */
  right: 18px;
  z-index: 6;

  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Individual buttons */
.tool-btn {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: none;
  background: rgba(9, 40, 38, 0.92);
  color: #c9fff1;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.tool-btn::after {
  content: attr(data-tooltip);
  position: absolute;

  right: 110%;       
  top: 50%;
  transform: translateY(-50%); 

  background: linear-gradient(
    180deg,
    rgba(9,38,41,0.96),
    rgba(8,32,34,0.94)
  );

  color: #eafaf4;
  font-size: 13px;               
  font-weight: 600;

  padding: 8px 12px;             
  border-radius: 11px;           

  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);

  transition:
    opacity 0.18s ease,
    transform 0.18s ease;

  z-index: 20;
}
.tool-btn::before {
  content: "";
  position: absolute;

  right: 100%;       
  top: 50%;
  transform: translateY(-50%);

  border: 7px solid transparent;
  border-left-color: rgba(9,38,41,0.96);

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.18s ease;
}

.tool-btn:hover {
  transform: translateY(-1px);
  background: #0f5c55;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

/* Hover effect */
.tool-btn:hover::after,
.tool-btn:hover::before {
  opacity: 1;
  transform: translateY(-50%); /* keep vertically centered */
}

/* Active state (traffic ON) */
.tool-btn.active {
  background: #19e07a;
  color: #083f36;
}

/* Country picker dropdown */
.country-picker {
  position: relative;
  cursor: pointer;
  user-select: none;
}

/* Dropdown panel */
.country-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;

  background: linear-gradient(
    180deg,
    rgba(9,38,41,0.98),
    rgba(8,32,34,0.96)
  );

  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);

  padding: 6px;
  display: none;
  z-index: 70;
}

/* Open state */
.country-picker.open .country-dropdown {
  display: block;
}

/* Items */
.country-item {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #eafaf4;
}

.country-item:hover {
  background: rgba(25,224,122,0.15);
  color: var(--accent);
}

/* Divider line */
.country-divider {
  height: 1px;
  margin: 6px 4px;
  background: rgba(255,255,255,0.08);
}
.tool-group {
  position: relative;
  display: inline-flex;
  flex-direction: column; /* stack buttons vertically */
}

.tool-subgroup {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tool-btn.active + .tool-subgroup {
  display: flex; /* show when active */
}

.toast-notification {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  z-index: 2500;

  background: linear-gradient(
    180deg,
    rgba(9,38,41,0.95),
    rgba(8,32,34,0.9)
  );

  color: #eafaf4;
  padding: 8px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 14px 40px rgba(6,22,23,0.6);
  border: 1px solid rgba(255,255,255,0.08);

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* visible state */
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* success accent */
.toast-notification.success {
  border-color: rgba(25,224,122,0.35);
  color: #cffff1;
}

/* error accent */
.toast-notification.error {
  border-color: rgba(255,120,120,0.4);
  color: #ffdede;
}

/* Full-screen blurred overlay */
.tutorial-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9996; /* behind highlight & tooltip */
  backdrop-filter: blur(3px);
  background: rgba(0,0,0,0.15); /* subtle dim */
}

/* Tooltip box */
.tutorial-step {
  position: absolute;
  max-width: 300px;
  background: #d4f7e3;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #083f36;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  pointer-events: auto;
  z-index: 9999; /* always above highlight */
  transition: all 0.25s ease;
}

/* Tooltip title */
.tutorial-step h2 {
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 600;
color: #1B4642;
}

/* Tooltip paragraph */
.tutorial-step p {
  margin: 0;
}

/* Tooltip button */
.tutorial-step button {
  margin-top: 10px;
  background: #19e07a;
  color: #083f36;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.2s ease;
}

.tutorial-step button:hover {
  background: #13c566;
}

/* Highlighted element overlay (clone of target element) */
.tutorial-highlight {
  position: absolute;
  z-index: 9998; /* above blur, below tooltip */
  pointer-events: none;
  border-radius: 12px;
  overflow: visible; /* allow cloned element */
  transform: scale(1.02); /* make it slightly bigger */
}

