
body {
  margin: 0;
  min-height: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #000e33;
  color: #ffffff;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #000e33;
  color: #ffffff;
  overflow-x: hidden; /* 🔒 prevent stray horizontal scroll */
}


/* Profile dropdown container */
.profile-container {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-container .avatar {
  cursor: pointer;
}

/* Profile dropdown menu */
.profile-dropdown {
  position: absolute;
  top: calc(100% + 8px); /* Reduced gap from 12px to 8px */
  right: 0;
  background: #000e33;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-10px);
  z-index: 1100;
}

/* Add invisible bridge between avatar and dropdown */
.profile-dropdown::before {
  content: '';
  position: absolute;
  top: -12px; /* Covers the gap */
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.profile-container:hover .profile-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.profile-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px; /* Increased from 10px to 12px for easier clicking */
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.profile-dropdown a i {
  width: 16px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.profile-dropdown a:hover {
  background: linear-gradient(135deg, #0066ff, #c27aff);
}

/* ───── NAVBAR ───── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  padding-bottom: 20px !important;
  padding: 0 48px;
z-index: 2000; /* above hero/search */

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
background: rgba(0, 14, 51, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* center nav items (Destinations / Recs / Network) */
.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  grid-column: 2;
}

/* big logo on desktop */
.nav-logo {
  width: 225px;
  height: auto;
  grid-column: 1;
  justify-self: start;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  grid-column: 3;
  justify-self: end;
}

.nav-item {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  position: relative;
}

.nav-item i {
  font-size: 0.65rem;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0066ff, #c27aff);
  opacity: 0;
  transform: translateY(4px);
  transition: 0.2s ease;
}

.nav-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
}

.create-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* avatar with gradient ring */
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  flex-shrink: 0;
  overflow: hidden; /* IMPORTANT */
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;  /* ensures perfect circle */
  object-fit: cover;   /* no stretching, no squashing */
  display: block;
}


/* hamburger toggle base */
.menu-toggle {
  display: none;
}

.hamburger {
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: none; /* shown in mobile breakpoint */
}a {
  text-decoration: none;
  color: white;
}

/* mobile slide-down menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;                 /* let it stretch edge-to-edge */
  /* remove width: 100%; */  /* or keep it and add box-sizing */
  background: rgba(0, 14, 51, 0.96);
  padding: 20px 24px;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-sizing: border-box;   /* include padding inside width */
}

/* when checkbox is checked, show mobile menu */
.menu-toggle:checked ~ .mobile-menu {
  display: flex;
}

/* DROPDOWN MENU (DESKTOP) */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #000e33;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 200px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown a:hover {
  background: linear-gradient(135deg, #0066ff, #c27aff);
}

/* ───── NAVBAR RESPONSIVE BREAKPOINTS ───── */

/* slightly shrink padding on medium screens */
@media (max-width: 1100px) {
  .navbar {
    padding: 0 32px;
  }
}

/* tablet / large mobile */
@media (max-width: 900px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-logo {
    width: 180px; /* scale logo down a bit */
  }

  .nav-left {
    gap: 20px;
  }
}

/* mobile layout: switch to flex, hide desktop nav items, show hamburger */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
  }

  .nav-logo {
    width: 170px;
  }

  .nav-left {
    /* hide center nav row; we’ll use .mobile-menu instead */
    display: none;
  }

  .nav-right {
    gap: 10px;
  }

  /* hide big create button on very small screens */
  .nav-right .create-btn {
    display: none;
  }

  /* show hamburger */
  .hamburger {
    display: block;
  }
}

a {
    text-decoration: none;
}



.avatar:hover,
.create-btn:hover,
.notification-bell:hover,
.rec-create-btn:hover,
.explore-btn:hover,
.circles-create-btn:hover,
.attach-link-small:hover
{
  box-shadow: 0 0 12px rgba(194, 122, 255, 0.6),
              0 0 6px rgba(0, 102, 255, 0.6);
              transition: 0.3s ease-in-out;
              cursor: pointer;
}


/* ───── NOTIFICATIONS IN NAVBAR ───── */

.notification-container {
  position: relative;
  display: flex;
  align-items: center;
    z-index: 2000001 !important; /* above nav dropdowns */

}

.notification-bell {
  position: relative;
}

/* red badge bubble */
.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;

  /* RoamRecs gradient */
  background: linear-gradient(135deg, #0066ff, #c27aff);

  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;

  display: none; /* JS will show it */
  box-shadow: 0 0 0 2px #000e33; /* subtle outline so it pops off nav */
}


/* dropdown panel */
.notification-modal {
  position: absolute;
  top: 52px;
  right: 0;
  width: 320px;
  max-height: 420px;
  background: rgba(2, 8, 32, 0.98);
  border-radius: 16px;
  padding: 12px 0;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.5);
  overflow-y: auto;
  z-index: 2000001 !important; /* above nav dropdowns */
}

.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.notification-header h4 {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.notif-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

/* list + entries */

.notification-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 360px;
  overflow-y: auto;
    z-index: 2000001 !important; /* above nav dropdowns */

}

.notification-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 2000001 !important; /* above nav dropdowns */

}

.notification-entry.unread {
  background: rgba(0, 102, 255, 0.08);
}

.notification-empty {
  padding: 12px 16px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* avatar */

.notification-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 2px; /* gradient ring thickness */

  /* RoamRecs gradient ring */
  background: linear-gradient(135deg, #0066ff, #c27aff);

  flex-shrink: 0;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}


.notification-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.notification-avatar.monogram {
  background: linear-gradient(135deg, #0066ff, #c27aff);
  padding: 2px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-avatar.monogram::after {
  content: attr(data-initials);
  background: #000e33;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-monogram {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000e33; /* inner dark circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
}



/* text area */

.notification-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.notif-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.notif-name {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.notif-name:hover {
  text-decoration: underline;
}

.trip-link {
  color: #c27aff;
  text-decoration: none;
}

.trip-link:hover {
  text-decoration: underline;
}

.comment-timestamp {
  font-size: 0.75rem;
  opacity: 0.65;
}

/* invite buttons */

.invite-actions {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.invite-actions button {
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  cursor: pointer;
}

.invite-actions button:first-child {
  background: #4b5bd5;
  color: #ffffff;
}

.invite-actions button:last-child {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.35);
}

.invite-status {
  margin-top: 4px;
  font-size: 0.78rem;
  opacity: 0.8;
}

/* make dropdown nicer on mobile */
@media (max-width: 768px) {
  .notification-modal {
    right: 50%;
    transform: translateX(50%);
    width: min(360px, calc(100vw - 32px));
      z-index: 2000001 !important; /* above nav dropdowns */

  }
}

@media (max-width: 480px) {
      .notification-modal {
  position: absolute;
  top: 52px;
  right: 30px;
  width: 320px;
  max-height: 420px;
  background: rgba(2, 8, 32, 0.98);
  border-radius: 16px;
  padding: 12px 0;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.5);
  overflow-y: auto;
  z-index: 2000001 !important;
}

  .mobile-menu .create-btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }


.plan-input,
.plan-search {
  width: 90% !important;
}
}

/* Gradient fallback avatar */
.gradient-avatar {
  background: linear-gradient(135deg, #0066ff, #c27aff);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}


.rr-footer{
  background: #000e33; /* match hero base */
  color: rgba(255,255,255,0.88);
  padding: 28px 0 56px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* subtle hero-like glow */
.rr-footer::before{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(0,102,255,0.18), transparent 60%),
    radial-gradient(900px 520px at 85% 25%, rgba(194,122,255,0.16), transparent 62%);
  filter: blur(40px);
  opacity: 0.8;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Logo + tagline */
.footer-logo-wrapper{
  text-align: left;
  margin-bottom: 26px;
}

.footer-logo{
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-tagline{
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
}

/* Columns */
.footer-columns{
  display: flex;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-col{
  min-width: 160px;
}

.footer-col h4{
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.footer-col a{
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(203,213,225,0.90); /* slate-ish */
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
}

.footer-col a:hover{
  color: #ffffff;
  transform: translateX(1px);
}

/* Divider */
.footer-divider{
  margin: 34px 0 26px;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-app-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-badges img {
  width: 130px;
}
/* App badges row + CTA */
.footer-app-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}


.footer-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;

  background: linear-gradient(90deg, #0066ff, #c27aff);
  box-shadow: 0 16px 40px rgba(75,91,213,0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}

.footer-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(75,91,213,0.34);
}

/* Bottom row */
.footer-bottom{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal{
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
}

.footer-socials a{
  margin-left: 12px;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: opacity .15s ease, transform .15s ease;
}

.footer-socials a:hover{
  opacity: 0.8;
  transform: translateY(-1px);
}


.plan-collection-wrap{
  min-height: calc(100vh - 200px);
  display:flex;
  align-items:center;
  justify-content:center;
  background-color: #ffffff;
  padding: 40px 16px;
}

.plan-card{
  width: min(720px, 100%);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 28px;
}

.plan-title h1{
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: #000e33;
  text-align: center;
}

.plan-title p{
  margin: 0 0 18px;
  color: #4b5563;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 10px;
}

.plan-search,
#collectionTitle{
  max-width: 600px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 16px;

  background: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;

  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  border: 1px solid rgba(75, 91, 213, 0.18);
  margin-bottom: 14px !important;
}

.plan-search i {
  font-size: 16px;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-search input,
.plan-input{
  flex: 1;
  border: none;
  outline: none;
  background: transparent;

  font-size: 1rem;
  color: #000e33;
}

.plan-search::placeholder {
  color: #9aa0b5;
}




.plan-selected{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 102, 255, 0.06);
  border: 1px solid rgba(0, 102, 255, 0.18);
  color: #111827;
}

.plan-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.plan-btn{
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  color: white;
  display:flex;
  align-items:center;
  gap: 10px;
  transition: 0.2s ease;
}

.plan-btn:disabled{
  opacity: 0.55;
  cursor: not-allowed;
}

.plan-btn.secondary{
  background: rgba(0,0,0,0.05);
  color: #111827;
}

/* ===== Google Places dropdown styled like .search-results ===== */

.pac-container{
  z-index: 999999 !important;
  margin: 8px auto 0 auto !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid rgba(75, 91, 213, 0.18) !important;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden !important;

  /* helps it “feel” like your component */
  font-family: "Helvetica Neue", Arial, sans-serif !important;
}

/* hide google footer */
.pac-container:after{ display:none !important; }

/* Hide Google’s default marker icon column */
.pac-icon{ display:none !important; }
.pac-item{ background-image: none !important; }

/* Each result row = .search-result-item */
.pac-item{
  padding: 18px 22px !important;
  cursor: pointer !important;
  border-top: 1px solid rgba(0,0,0,0.04) !important;
}

.pac-item:first-child{
  border-top: none !important;
}

/* Hover like your .search-result-item:hover */
.pac-item:hover,
.pac-item-selected,
.pac-item-selected:hover{
  background: #f7f7ff !important;
}

/* Main line = .search-result-main */
.pac-item .pac-item-query{
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #000e33 !important;
}

/* Sub line = .search-result-sub */
.pac-item span:not(.pac-item-query){
  font-size: 14px !important;
  color: #545459 !important;
}

/* matched text */
.pac-matched{
  font-weight: 700 !important;
  color: #000e33 !important;
}

.plan-search{
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.plan-card{
  overflow: visible;
}

.plan-form-row{
  max-width: 600px;
  margin: 14px auto 0 auto;
  width: 100%;
}



.plan-help{
  margin-top: 4px;
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.25;
}

.plan-text-input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.02);
  outline: none;
  font-size: 1rem;
}

.plan-text-input:focus{
  border-color: rgba(75, 91, 213, 0.35);
  box-shadow: 0 0 0 4px rgba(75, 91, 213, 0.10);
}

/* Toggle */
.plan-toggle-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.rr-toggle{
  display:flex;
  align-items:center;
  gap: 10px;
  user-select:none;
}

.rr-toggle input{
  display:none;
}

.rr-toggle-track{
  width: 56px;
  height: 32px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.10);
  position: relative;
  transition: 0.2s ease;
}

.rr-toggle-track::after{
  content:"";
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #ffffff;
  position:absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: 0.2s ease;
}

.rr-toggle input:checked + .rr-toggle-track{
  background: rgba(75, 91, 213, 0.22);
  border-color: rgba(75, 91, 213, 0.30);
}

.rr-toggle input:checked + .rr-toggle-track::after{
  transform: translateX(24px);
}

.rr-toggle-text{
  font-weight: 700;
  color: #0b1030;
}

.plan-field{
  max-width: 600px;
  margin: 14px auto 0 auto;
  width: 100%;
}

.plan-label{
  display:block;
  font-size: 0.9rem;
  font-weight: 700;
  padding-top: 8px;
  color: #000e33;
  margin: 0 0 8px 2px;
}

.req-star{
  color: #4b5bd5;
  font-weight: 900;
  margin-left: 4px;
}

.plan-input{
  width: 100%;
}




.segmented{
  display:flex;
  align-items:center;
  width: fit-content;
  background: #ffffff;
  border: 1px solid rgba(75, 91, 213, 0.18);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.seg-btn{
  border: none;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: rgba(0, 14, 51, 0.75);
  cursor: pointer;
  transition: 0.2s ease;
}

.seg-btn.active{
  background: linear-gradient(135deg, #0066ff, #c27aff);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.plan-help{
  margin-top: 10px;
  font-size: 0.85rem;
  color: #6b7280;
}

.plan-error{
  margin-top: 8px;
  font-size: 0.85rem;
  color: #dc2626;
  font-weight: 600;
}

.plan-textarea {
  resize: vertical;
  min-height: 30px;
  padding: 12px 12px;
  width: 100%;
  font-family: inherit;
  background: transparent; /* soft indigo wash */
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  line-height: 1.5;
  border: 1px solid rgba(75, 91, 213, 0.18);
}
