@font-face {
  font-family: "Factor A";
  src: url("/static/fonts/FactorA-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Factor A";
  src: url("/static/fonts/FactorA-Medium.otf") format("opentype");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Factor A";
  src: url("/static/fonts/FactorA-Bold.otf") format("opentype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --v-dark: #01523c;
  --v-green: #12a37c;
  --v-lime: #c5f02d;
  --ink: #163b32;
  --muted: #727b78;
  --line: #e5ebe7;
  --surface: #fff;
  --page: #f6f8f5;
  --soft: #eef5f1;
  --shadow: 0 12px 36px rgba(1,82,60,.065);
  --font: "Factor A", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}
* { box-sizing: border-box; }
html { background: var(--page); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 5%, rgba(197,240,45,.05), transparent 26rem),
    var(--page);
}
button, input, select { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.app-shell {
  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto;
  padding-bottom: 54px;
}

/* HEADER */
.topbar {
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(1,82,60,.07);
}
.brand { display: flex; align-items: center; }
.brand-logo { width: 196px; display: block; }
.main-nav { justify-self: end; display: flex; align-items: center; gap: 4px; }
.nav-item {
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #76807d;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
}
.nav-item svg { width: 19px; height: 19px; }
.nav-item:hover { background: rgba(18,163,124,.055); color: var(--v-dark); }
.nav-item--active { color: var(--v-dark); background: rgba(18,163,124,.07); }
.heart-icon { fill: transparent; }
.nav-item.is-favorite-mode .heart-icon { fill: var(--v-lime); stroke: var(--v-dark); }
.profile-button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(1,82,60,.11);
  background: #fff; color: var(--v-dark);
  display: grid; place-items: center;
}
.profile-button svg { width: 22px; height: 22px; }

/* SEARCH */
.search-stage {
  margin-top: 25px;
  display: grid;
  grid-template-columns: minmax(300px,.78fr) minmax(580px,1.22fr);
  gap: clamp(34px,5vw,72px);
  align-items: center;
  min-height: 305px;
}
.intro { position: relative; padding: 26px 0 28px; min-width: 0; }
.eyebrow {
  display: flex; align-items: center; gap: 9px;
  color: var(--v-green); font-size: 11px; font-weight: 700; letter-spacing: .13em;
}
.eyebrow span {
  width: 22px; height: 4px; border-radius: 2px;
  transform: skew(-20deg); background: var(--v-lime);
}
.intro h1 {
  max-width: 560px;
  margin: 14px 0 0;
  font-size: clamp(49px,5vw,72px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 700;
  color: var(--v-dark);
}
.intro p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}
.brand-motion {
  position: absolute; z-index: -1;
  right: 4%; top: 28px; width: 250px; height: 180px;
  opacity: .085; transform: rotate(-29deg);
}
.brand-motion i { display: block; height: 14px; border-radius: 99px; margin: 16px 0; background: var(--v-green); }
.brand-motion i:nth-child(1){width:80%;margin-left:20%}
.brand-motion i:nth-child(2){width:100%}
.brand-motion i:nth-child(3){width:64%;margin-left:36%}
.brand-motion b { position:absolute;width:24px;height:24px;border-radius:50%;background:var(--v-lime);right:25px;top:57px; }

.search-card {
  background: #fff;
  border: 1px solid rgba(1,82,60,.08);
  border-radius: 23px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.search-card__title {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 1px 3px 15px;
}
.search-card__title strong { font-size: 17px; color: var(--v-dark); }
.search-card__title span { font-size: 12px; color: #909895; }
.search-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.search-field {
  min-width: 0; min-height: 84px; padding: 12px 14px;
  border: 0; background: #fff;
  display: grid; grid-template-columns: 38px minmax(0,1fr) auto;
  align-items: center; gap: 11px; text-align: left; color: var(--ink);
}
.search-field:nth-child(odd){border-right:1px solid var(--line)}
.search-field:nth-child(-n+2){border-bottom:1px solid var(--line)}
.search-field:hover { background: #fafcfb; }
.field-icon {
  width:38px;height:38px;border-radius:11px;
  background:var(--soft);color:var(--v-green);
  display:grid;place-items:center;
}
.field-icon svg { width:20px;height:20px; }
.field-copy { min-width: 0; }
.field-copy small {
  display:block;color:#929a97;font-size:10px;
  text-transform:uppercase;letter-spacing:.055em;margin-bottom:4px;
}
.field-copy strong {
  display:block;color:var(--v-dark);font-size:18px;font-weight:600;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.chevron { color:#a8afad;font-size:23px;line-height:1; }
.primary-button {
  width:100%;min-height:55px;margin-top:14px;padding:0 17px 0 21px;
  border:0;border-radius:15px;background:var(--v-lime);color:var(--v-dark);
  display:flex;align-items:center;justify-content:space-between;
  font-weight:700;font-size:17px;
}
.primary-button svg { width:22px;height:22px; }

.quick-filters { margin-top: 16px; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.chip {
  min-height:39px;padding:0 14px;border-radius:12px;
  border:1px solid var(--line);background:#fff;color:#5f6966;
  font-size:12px;font-weight:500;
}
.chip:hover{border-color:#cbd8d1}
.chip--active{background:var(--v-dark);border-color:var(--v-dark);color:#fff}
.chip--future{opacity:.55}

/* RESULTS */
.results-section { margin-top: 31px; }
.section-heading {
  display:flex;justify-content:space-between;align-items:end;gap:20px;
  padding-bottom:14px;border-bottom:1px solid var(--line);
}
.section-kicker {
  display:block;color:var(--v-green);font-size:10px;font-weight:700;
  letter-spacing:.12em;margin-bottom:6px;
}
.section-heading h2 {
  margin:0;color:var(--v-dark);font-size:30px;line-height:1;font-weight:700;letter-spacing:-.025em;
}
.section-heading p{margin:7px 0 0;color:var(--muted);font-size:13px}
.sort-button {
  min-height:38px;padding:0 4px;border:0;background:transparent;color:#78817e;
  display:flex;align-items:center;gap:5px;font-size:12px;
}
.sort-button strong{color:var(--v-dark);font-weight:600}

.results-list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:15px;
}

/* Grouped option card: one venue + one time, multiple courts */
.option-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 118px minmax(0,1fr);
  border: 1px solid rgba(1,82,60,.075);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(1,82,60,.035);
  transition: transform .15s ease, box-shadow .15s ease;
}
.option-card:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(1,82,60,.065); }

.option-time {
  padding: 17px 14px;
  background: linear-gradient(145deg, #edf6f1, #f8fbf9);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.option-time strong {
  color: var(--v-dark);
  font-size: 29px;
  line-height: .95;
  font-weight: 700;
  letter-spacing: -.035em;
}
.option-time span {
  margin-top: 7px;
  color: #77817e;
  font-size: 11px;
}
.option-time .duration {
  margin-top: 12px;
  color: var(--v-green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.option-main { min-width: 0; padding: 15px 15px 13px; }
.option-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.option-venue { min-width: 0; }
.option-venue h3 {
  margin: 0;
  color: var(--v-dark);
  font-size: 16px;
  line-height: 1.05;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.option-venue p {
  margin: 4px 0 0;
  color: #8a9390;
  font-size: 10px;
}
.group-favorite {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--v-dark);
  font-size: 15px;
}
.group-favorite.is-favorite { background: var(--v-lime); border-color: var(--v-lime); }

.availability-row {
  margin-top: 11px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.availability-row strong { color: var(--v-dark); font-size: 14px; font-weight: 650; }
.availability-row span { color: var(--muted); font-size: 10px; }

.court-chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.court-pill {
  padding: 5px 7px;
  border-radius: 8px;
  background: var(--soft);
  color: #477064;
  font-size: 9px;
  line-height: 1;
}
.court-pill--more { background: #f2f3f2; color: #858d8a; }

.option-footer {
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid #edf0ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}
.freshness {
  display:flex;align-items:center;gap:5px;
  color:#8a9390;font-size:9px;
}
.freshness::before{
  content:"✓";width:16px;height:16px;border:1px solid var(--v-green);border-radius:5px;
  color:var(--v-green);display:grid;place-items:center;font-size:9px
}
.choose-button {
  min-height: 33px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: var(--v-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}
.option-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 4px 6px;
  border-radius: 7px;
  background: var(--v-lime);
  color: var(--v-dark);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .02em;
}

.loading-card,.empty-card {
  margin-top:15px;padding:20px;border:1px solid var(--line);border-radius:18px;background:#fff
}
.loading-card{display:flex;align-items:center;gap:13px}
.loading-card strong,.loading-card span{display:block}
.loading-card span{margin-top:3px;color:var(--muted);font-size:11px}
.loader-mark{width:34px;height:34px;border-radius:11px;background:var(--soft);display:grid;place-items:center}
.loader-mark span{width:13px;height:13px;border-radius:50%;background:var(--v-lime);animation:pulse 1.1s infinite}
@keyframes pulse{50%{transform:scale(.65);opacity:.55}}
.empty-card{text-align:center;padding-block:28px}
.empty-card h3{margin:9px 0 5px}.empty-card p{margin:0 auto 16px;color:var(--muted);font-size:12px;max-width:390px}
.empty-icon{width:40px;height:40px;margin:auto;border-radius:50%;display:grid;place-items:center;background:var(--v-lime)}
.secondary-button{min-height:38px;padding:0 14px;border:1px solid var(--v-dark);border-radius:11px;background:#fff;color:var(--v-dark);font-weight:600;font-size:12px}
.status-banner{
  margin-top:13px;padding:10px 13px;border:1px solid #dfe9e3;border-radius:12px;
  background:#f2f7f4;color:#5f706a;font-size:11px
}

/* CATCH */
.catch-card {
  position:relative;overflow:hidden;
  margin-top:18px;padding:23px 25px;border-radius:20px;
  background:var(--v-dark);color:#fff;
  display:flex;align-items:center;justify-content:space-between;gap:28px;
}
.catch-copy{position:relative;z-index:2}
.catch-copy>span{color:var(--v-lime);font-size:9px;font-weight:700;letter-spacing:.12em}
.catch-card h3{margin:5px 0;color:#fff;font-size:23px;line-height:1.05}
.catch-card p{margin:0;color:rgba(255,255,255,.72);font-size:11px;line-height:1.4}
.catch-button{
  position:relative;z-index:2;flex:0 0 auto;min-height:44px;padding:0 15px 0 17px;border:0;border-radius:12px;
  background:var(--v-lime);color:var(--v-dark);display:flex;align-items:center;gap:11px;font-size:11px;font-weight:700
}
.catch-button svg{width:18px;height:18px}
.catch-motion{position:absolute;right:180px;top:-20px;width:230px;opacity:.11;transform:rotate(-25deg)}
.catch-motion i{display:block;height:11px;background:var(--v-lime);border-radius:99px;margin:15px 0}
.catch-motion i:nth-child(2){width:75%;margin-left:25%}.catch-motion i:nth-child(3){width:55%;margin-left:45%}

/* DIALOGS */
.picker-dialog{
  width:min(calc(100% - 24px),500px);
  border:0;border-radius:20px;padding:0;background:#fff;
  box-shadow:0 24px 70px rgba(1,82,60,.18)
}
.picker-dialog::backdrop{background:rgba(0,30,22,.28);backdrop-filter:blur(2px)}
.dialog-header{display:flex;align-items:center;justify-content:space-between;padding:18px 20px 10px;font-size:17px}
.dialog-close{width:32px;height:32px;border:0;border-radius:50%;background:#f0f3f1;color:var(--ink);font-size:20px}
.dialog-options{display:grid;gap:7px;padding:7px 16px 20px}
.option-button{
  min-height:48px;padding:0 13px;border:1px solid var(--line);border-radius:12px;
  background:#fff;color:var(--ink);text-align:left
}
.option-button.is-selected{border-color:var(--v-green);background:#f2faf6;font-weight:600}
.time-grid{grid-template-columns:1fr 1fr}
.date-input{width:100%;min-height:48px;padding:0 12px;border:1px solid var(--line);border-radius:12px;background:#fff}
.alert-dialog-body{padding:7px 18px 22px}.alert-dialog-body p{color:var(--muted);font-size:12px;line-height:1.45}
.alert-summary{padding:14px;border-radius:13px;background:#f2f7f4;color:var(--v-dark);font-weight:600;line-height:1.55}
.alert-dialog-body .primary-button{font-size:14px}

.court-choice-list { display: grid; gap: 8px; padding: 7px 16px 20px; }
.court-choice {
  min-height: 52px;
  padding: 0 12px 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.court-choice strong { color: var(--v-dark); font-size: 13px; }
.court-choice button {
  min-height: 32px;
  border: 0;
  border-radius: 9px;
  padding: 0 10px;
  background: var(--v-dark);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
}

.toast{
  position:fixed;z-index:50;left:50%;bottom:24px;transform:translate(-50%,16px);
  width:min(calc(100% - 34px),500px);padding:11px 13px;border-radius:11px;background:#102d25;color:#fff;
  font-size:11px;text-align:center;opacity:0;pointer-events:none;transition:.2s
}
.toast.is-visible{opacity:1;transform:translate(-50%,0)}

/* TABLET */
@media (max-width: 980px) {
  .app-shell{width:min(calc(100% - 28px),860px)}
  .topbar{gap:16px}
  .brand-logo{width:178px}
  .nav-item{padding:0 9px}.nav-item span{display:none}
  .search-stage{grid-template-columns:minmax(235px,.72fr) minmax(430px,1.28fr);gap:28px}
  .intro h1{font-size:clamp(45px,6vw,58px)}
  .intro p{font-size:14px}
}

/* MOBILE */
@media (max-width: 720px) {
  .app-shell{width:100%;padding:0 14px calc(92px + var(--safe-bottom))}
  .topbar{height:68px;display:flex;justify-content:space-between;border-bottom:0}
  .brand-logo{width:170px}
  .profile-button{width:40px;height:40px}

  .main-nav{
    position:fixed;z-index:30;left:0;right:0;bottom:0;
    min-height:calc(74px + var(--safe-bottom));
    padding:6px 8px calc(6px + var(--safe-bottom));
    background:rgba(255,255,255,.97);backdrop-filter:blur(16px);
    border-top:1px solid rgba(1,82,60,.07);
    display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  }
  .nav-item{
    padding:0;min-height:58px;border-radius:0;
    flex-direction:column;justify-content:center;gap:2px;font-size:9px
  }
  .nav-item span{display:block}
  .nav-item svg{width:21px;height:21px}
  .nav-item--active{background:transparent;color:var(--v-green)}

  .search-stage{margin-top:4px;display:block;min-height:0}
  .intro{padding:17px 1px 21px}
  .eyebrow{font-size:9px}
  .intro h1{margin-top:10px;max-width:360px;font-size:clamp(38px,11.5vw,49px);line-height:.97;letter-spacing:-.04em}
  .intro p{max-width:355px;margin-top:12px;font-size:13px;line-height:1.38}
  .brand-motion{right:-110px;top:14px;width:220px;height:150px;opacity:.07}

  .search-card{padding:10px;border-radius:19px}
  .search-card__title{display:none}
  .search-grid{border-radius:13px}
  .search-field{min-height:72px;padding:8px 7px;grid-template-columns:33px minmax(0,1fr);gap:8px}
  .search-field .chevron{display:none}
  .field-icon{width:33px;height:33px;border-radius:9px}
  .field-icon svg{width:17px;height:17px}
  .field-copy small{font-size:8px}
  .field-copy strong{font-size:13px}
  .primary-button{min-height:50px;margin-top:9px;border-radius:12px;font-size:15px}

  .quick-filters{
    margin-top:12px;flex-wrap:nowrap;overflow-x:auto;padding-bottom:4px;scrollbar-width:none
  }
  .quick-filters::-webkit-scrollbar{display:none}
  .chip{flex:0 0 auto;min-height:36px;padding:0 11px;font-size:10px}

  .results-section{margin-top:24px}
  .section-heading{padding-bottom:11px}
  .section-kicker{font-size:8px}
  .section-heading h2{font-size:24px}
  .section-heading p{font-size:10px}
  .sort-button>span:first-child{display:none}

  .results-list{grid-template-columns:1fr;gap:9px;margin-top:12px}
  .option-card{grid-template-columns:91px minmax(0,1fr);border-radius:15px}
  .option-time{padding:13px 10px}
  .option-time strong{font-size:24px}
  .option-time span{font-size:9px;margin-top:5px}
  .option-time .duration{font-size:7px;margin-top:9px}
  .option-main{padding:12px 11px 10px}
  .option-venue h3{font-size:14px}
  .option-venue p{font-size:9px;margin-top:3px}
  .group-favorite{width:25px;height:25px;font-size:13px}
  .availability-row{margin-top:8px}
  .availability-row strong{font-size:12px}
  .availability-row span{font-size:9px}
  .court-chips{margin-top:6px}
  .court-pill{padding:4px 6px;font-size:8px}
  .option-footer{margin-top:8px;padding-top:8px}
  .freshness{font-size:8px}.freshness::before{width:14px;height:14px}
  .choose-button{min-height:30px;padding:0 9px;font-size:9px}
  .option-badge{font-size:6px;left:7px;top:7px}

  .catch-card{margin-top:14px;padding:19px;border-radius:16px;display:block}
  .catch-card h3{font-size:19px}
  .catch-card p{max-width:280px}
  .catch-button{margin-top:14px;min-height:38px}
  .catch-motion{right:-50px}

  .picker-dialog{margin:auto auto 0;border-radius:20px 20px 0 0}
  .toast{bottom:calc(88px + var(--safe-bottom))}
}

@media (max-width: 390px){
  .app-shell{padding-left:10px;padding-right:10px}
  .brand-logo{width:156px}
  .intro h1{font-size:37px}
  .freshness{display:none}
}

/* LARGE DESKTOP */
@media (min-width: 1240px){
  .search-stage{grid-template-columns:minmax(380px,.8fr) minmax(650px,1.2fr)}
  .intro h1{font-size:76px}
  .results-list{grid-template-columns:repeat(3,minmax(0,1fr))}
  .option-card{grid-template-columns:108px minmax(0,1fr)}
  .option-time strong{font-size:27px}
}


/* V5/V6 state handling */
[hidden] {
  display: none !important;
}

/* V6 prices */
.availability-price-row {
  margin-top: 11px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.availability-price-row .availability-row {
  margin-top: 0;
}

.option-price {
  flex: 0 0 auto;
  color: var(--v-dark);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.025em;
}

.court-choice-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.court-choice-price {
  color: var(--v-dark);
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .availability-price-row {
    margin-top: 8px;
  }

  .option-price {
    font-size: 14px;
  }

  .court-choice-price {
    font-size: 10px;
  }
}


/* V7 venue metadata and filters */
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.feature-pill {
  padding: 5px 7px;
  border-radius: 8px;
  border: 1px solid rgba(18,163,124,.13);
  background: rgba(18,163,124,.055);
  color: #3f7567;
  font-size: 8px;
  line-height: 1;
  font-weight: 600;
}

.chip--filters {
  border-style: dashed;
}

.filters-sheet {
  display: grid;
  gap: 16px;
  padding: 8px 18px 22px;
}

.filter-block {
  display: grid;
  gap: 7px;
}

.filter-block > strong {
  color: var(--v-dark);
  font-size: 12px;
}

.filter-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 9px;
  margin-top: 3px;
}

.filter-apply {
  margin-top: 0;
  min-height: 48px;
  justify-content: center;
  padding: 0 16px;
}

.court-choice-meta {
  color: #7d8985;
  font-size: 9px;
}

@media (max-width: 720px) {
  .feature-chips {
    margin-top: 6px;
  }

  .feature-pill {
    padding: 4px 6px;
    font-size: 7px;
  }

  .filters-sheet {
    padding-left: 14px;
    padding-right: 14px;
  }
}


/* V8 server-side slot watches */
.watch-list-status {
  padding: 2px 20px 10px;
  color: #7b8581;
  font-size: 11px;
}

.watch-list {
  display: grid;
  gap: 8px;
  padding: 2px 16px 20px;
  max-height: min(60vh, 520px);
  overflow-y: auto;
}

.watch-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.watch-item-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.watch-item-main strong {
  color: var(--v-dark);
  font-size: 13px;
}

.watch-item-main span {
  color: #65726e;
  font-size: 10px;
  line-height: 1.35;
}

.watch-item-main small {
  color: var(--v-green);
  font-size: 9px;
}

.watch-delete {
  flex: 0 0 auto;
  min-height: 31px;
  padding: 0 9px;
  border: 1px solid #e2e6e3;
  border-radius: 9px;
  background: #fff;
  color: #7f8885;
  font-size: 9px;
}

.watch-delete:hover {
  color: #8e3c33;
  border-color: #eed1cd;
}

#saveAlertButton:disabled {
  opacity: .65;
  cursor: wait;
}

@media (max-width: 720px) {
  .watch-list {
    max-height: 60vh;
    padding-left: 12px;
    padding-right: 12px;
  }

  .watch-item {
    padding: 12px;
  }

  .watch-item-main strong {
    font-size: 12px;
  }
}
