/*!**********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js!./app/reach-mobile.css ***!
  \**********************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap);
/*!**************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js!./app/reach-mobile.css (1) ***!
  \**************************************************************************************************************************************************/
        /* Header  */
        .gvtc-header {
          background: #ffffff;
          border-bottom: 1px solid #e8edf2;
          position: sticky;
          top: 0;
          z-index: 100;
          box-shadow: 0 1px 4px rgba(11, 37, 69, 0.06);
        }

        .header-inner {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 32px;
          height: 68px;
          display: flex;
          align-items: center;
          justify-content: space-between;
        }

        .logo-link {
          display: flex;
          align-items: center;
          text-decoration: none;
        }

        .header-nav {
          display: flex;
          align-items: center;
          gap: 36px;
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
        }

        .nav-link {
          text-decoration: none;
          font-family: 'Montserrat', sans-serif;
          font-weight: 700;
          font-size: 15px;
          color: #0B2545;
          padding-bottom: 6px;
          position: relative;
          transition: color 0.2s;
        }

        .nav-link::after {
          content: '';
          position: absolute;
          bottom: -2px;
          left: 0;
          width: 0;
          height: 2.5px;
          background: #0B2545;
          border-radius: 2px;
          transition: width 0.25s ease;
        }

        .nav-link.active::after,
        .nav-link:hover::after {
          width: 100%;
        }

        .signin-btn {
          display: flex;
          align-items: center;
          gap: 7px;
          text-decoration: none;
          font-family: 'Montserrat', sans-serif;
          font-weight: 600;
          font-size: 14px;
          color: #0B2545;
          transition: color 0.2s;
        }

        .signin-btn:hover {
          color: #00BFCF;
        }

        @media (max-width: 640px) {
          .header-inner {
            padding: 0 16px;
          }

          .header-nav {
            gap: 20px;
            position: static;
            transform: none;
          }

          .signin-btn span {
            display: none;
          }
        }

        /* // Footer  */
        .gvtc-footer {
          background: #ffffff;
          border-top: 1px solid #e8edf2;
          margin-top: auto;
        }

        .footer-inner {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 32px;
        }

        .footer-top {
          display: grid;
          grid-template-columns: 180px 1fr 1fr 1fr;
          gap: 48px;
          padding: 48px 0 40px;
          align-items: start;
        }

        .footer-logo-col {
          display: flex;
          align-items: flex-start;
          padding-top: 4px;
        }

        .footer-col {
          display: flex;
          flex-direction: column;
          gap: 14px;
        }

        .footer-heading {
          font-family: 'Montserrat', sans-serif;
          font-weight: 700;
          font-size: 14px;
          color: #0B2545;
          margin: 0 0 4px;
        }

        .footer-link {
          text-decoration: none;
          font-family: 'Montserrat', sans-serif;
          font-size: 14px;
          color: #4a5568;
          transition: color 0.2s;
          line-height: 1.4;
        }

        .footer-link:hover {
          color: #00BFCF;
        }

        .footer-divider {
          border: none;
          border-top: 1px solid #e8edf2;
        }

        .footer-bottom {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 20px 0;
        }

        .footer-copy {
          font-family: 'Montserrat', sans-serif;
          font-size: 13px;
          color: #6b7280;
          margin: 0;
        }

        .store-badges {
          display: flex;
          gap: 12px;
          align-items: center;
        }

        .badge-link img {
          display: block;
          height: 38px;
          width: auto;
        }

        @media (max-width: 768px) {
          .footer-top {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
          }

          .footer-logo-col {
            grid-column: 1 / -1;
          }

          .footer-bottom {
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
          }

          .footer-inner {
            padding: 0 16px;
          }
        }

        /* Page  */
  /* ─────────────────────────────────────────
   GVTC Mobile — reach-mobile.css
   Import in app/layout.tsx:
     import './reach-mobile.css';
───────────────────────────────────────── */

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

/* ── Page layout ── */
.gvtc-main {
  flex: 1;
  min-height: calc(100vh - 68px - 220px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 32px;
  background: #f5f7fa;
}

/* ── BYOP Card ── */
.byop-section { max-width: 1000px; margin: 0 auto; width: 100%; }

.byop-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(11, 37, 69, 0.08);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.byop-visual {
  background: #f0f4f8;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  width: 320px;
  min-height: 240px;
  flex-shrink: 0;
  padding: 24px 16px 0;
  position: relative;
}

.wifi-icon { position: absolute; top: 24px; left: 24px; }

.phone-figure {
  width: 120px;
  height: 180px;
  background: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=200&q=80') center/cover no-repeat;
  border-radius: 8px 8px 0 0;
  opacity: 0.85;
}

.byop-content { padding: 48px 48px 48px 40px; flex: 1; }

.byop-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #0b2545;
  margin-bottom: 16px;
  line-height: 1.2;
}

.byop-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}

.byop-btn {
  background: #0b2545;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.byop-btn:hover { background: #0d2e5a; transform: translateY(-1px); }
.byop-btn:active { transform: translateY(0); }

/* ── Modal overlay ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 69, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 24px;
  backdrop-filter: blur(2px);
  animation: fadeIn 0.2s ease;
}

/* ── Modal box ── */
.modal-box {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  max-width: 780px;
  width: 100%;
  min-height: 420px;
  box-shadow: 0 24px 60px rgba(11, 37, 69, 0.2);
  animation: slideUp 0.25s ease;
}

/* ── Modal left panel ── */
.modal-left {
  background: linear-gradient(160deg, #0b2545 0%, #00bfcf 100%);
  color: white;
  padding: 40px 32px;
  width: 270px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.help-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.4; }
.help-sub   { font-family: 'Montserrat', sans-serif; font-size: 13px; opacity: 0.9; }

.device-guide { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }

.device-row { display: flex; gap: 12px; align-items: flex-start; }
.device-row div { display: flex; flex-direction: column; gap: 3px; }
.device-row strong { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; }
.device-row span   { font-family: 'Montserrat', sans-serif; font-size: 12px; opacity: 0.85; line-height: 1.4; }

.device-icon {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Result left panel ── */
.result-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  width: 100%;
}

.result-device-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.result-imei {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  opacity: 0.8;
  text-align: center;
  letter-spacing: 0.3px;
}

.phone-vector {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3));
  animation: floatPhone 3s ease-in-out infinite;
}

/* ── Modal right panel ── */
.modal-right {
  padding: 36px;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: #0b2545; background: #f0f4f8; }

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #0b2545;
  padding-right: 32px;
}

/* ── Form view ── */
.imei-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.imei-input-wrap { position: relative; }

.imei-input {
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  padding: 14px 52px 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #0b2545;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}
.imei-input:focus  { border-color: #00bfcf; background: white; }
.imei-input::placeholder { color: #9ca3af; }

.imei-counter {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #9ca3af;
}

.form-error {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #dc2626;
  background: #fef2f2;
  padding: 10px 14px;
  border-radius: 8px;
}

.check-btn {
  width: 100%;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: not-allowed;
  background: #e5e7eb;
  color: #9ca3af;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.check-btn--enabled { background: #0b2545; color: white; cursor: pointer; }
.check-btn--enabled:hover { background: #0d2e5a; transform: translateY(-1px); }

.imei-details summary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #0b2545;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.imei-details summary::-webkit-details-marker { display: none; }
.imei-details summary::before { content: '▶'; font-size: 10px; transition: transform 0.2s; }
.imei-details[open] summary::before { transform: rotate(90deg); }
.imei-details p {
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.6;
}

.modal-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  color: #4a5568;
  line-height: 1.6;
  border-top: 1px solid #f0f4f8;
  padding-top: 14px;
  margin-top: auto;
}
.modal-note a { color: #00bfcf; font-weight: 600; text-decoration: none; }
.modal-note a:hover { text-decoration: underline; }

/* ── Loading view ── */
.loading-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  animation: fadeIn 0.2s ease;
}

.scan-wrapper {
  position: relative;
  width: 100px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-phone { position: relative; z-index: 2; }

/* Scanning beam */
.scan-beam {
  position: absolute;
  top: 20px;
  left: 5px;
  right: 5px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00bfcf, transparent);
  border-radius: 2px;
  z-index: 3;
  animation: scanBeam 1.6s ease-in-out infinite;
  box-shadow: 0 0 12px 4px rgba(0, 191, 207, 0.4);
}

/* Pulse rings behind phone */
.scan-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.scan-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 191, 207, 0.3);
  animation: ringPulse 2s ease-out infinite;
}
.scan-ring--1 { width: 80px;  height: 80px;  animation-delay: 0s; }
.scan-ring--2 { width: 120px; height: 120px; animation-delay: 0.4s; }
.scan-ring--3 { width: 160px; height: 160px; animation-delay: 0.8s; }

.loading-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0b2545;
}
.loading-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

.loading-dots { display: flex; gap: 6px; }
.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00bfcf;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* ── Result view ── */
.result-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.result-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-icon--success { background: #10b981; }
.result-icon--fail    { background: #ef4444; }

.result-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #0b2545;
}
.result-title--fail { color: #dc2626; }

.result-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  max-width: 340px;
}

.result-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.result-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  background: #e0f7fa;
  color: #00838f;
  padding: 4px 12px;
  border-radius: 20px;
}

.check-another-btn {
  width: 100%;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  background: #0b2545;
  color: white;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.check-another-btn:hover { background: #0d2e5a; transform: translateY(-1px); }

/* ── Animations ── */
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@keyframes scanBeam {
  0%   { top: 20px; opacity: 1; }
  45%  { top: 160px; opacity: 1; }
  50%  { opacity: 0; }
  55%  { top: 20px; opacity: 0; }
  60%  { opacity: 1; }
  100% { top: 20px; opacity: 1; }
}

@keyframes ringPulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
  40%            { transform: scale(1.1); opacity: 1; }
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .byop-card     { flex-direction: column; }
  .byop-visual   { width: 100%; min-height: 160px; }
  .byop-content  { padding: 32px 24px; }
  .modal-box     { flex-direction: column; max-height: 90vh; overflow-y: auto; }
  .modal-left    { width: 100%; padding: 28px 24px; }
  .modal-right   { padding: 24px; }
  .gvtc-main     { padding: 32px 16px; }
}

/* ── Animated mobile result concept ── */
.mobile-result-anim {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.mobile-svg {
  animation: mobilePopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  filter: drop-shadow(0 8px 20px rgba(16, 185, 129, 0.25));
}

.mobile-result-anim--fail .mobile-svg {
  filter: drop-shadow(0 8px 20px rgba(239, 68, 68, 0.25));
}

/* SVG internal animations via CSS — target by class on SVG children */
.success-circle {
  transform-origin: 32px 52px;
  animation: circlePop 0.4s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.success-check {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: drawCheck 0.4s 0.55s ease forwards;
}
.fail-circle {
  transform-origin: 32px 52px;
  animation: circlePop 0.4s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Shake on fail */
.mobile-svg--shake {
  animation: mobilePopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both,
             mobileShake 0.5s 0.45s ease both;
}

/* Sparkles for success */
.sparkle {
  position: absolute;
  font-size: 14px;
  color: #10b981;
  animation: sparklePop 0.5s ease both;
  pointer-events: none;
}
.sparkle--1 { top: -8px;  right: -4px;  animation-delay: 0.5s; }
.sparkle--2 { top: 10px;  right: -16px; animation-delay: 0.65s; font-size: 10px; }
.sparkle--3 { bottom: 0px; right: -8px; animation-delay: 0.75s; font-size: 10px; }
.sparkle--4 { top: -4px;  left: -10px;  animation-delay: 0.6s; }

/* Warning sparks for failure */
.fail-spark {
  position: absolute;
  font-size: 16px;
  font-weight: 800;
  color: #ef4444;
  animation: sparklePop 0.5s ease both;
  pointer-events: none;
}
.fail-spark--1 { top: -10px; right: -6px;  animation-delay: 0.45s; }
.fail-spark--2 { top: 8px;   right: -18px; animation-delay: 0.6s; font-size: 12px; }

/* Keyframes */
@keyframes mobilePopIn {
  0%   { opacity: 0; transform: scale(0.4) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes circlePop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

@keyframes mobileShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px) rotate(-2deg); }
  40%       { transform: translateX(5px)  rotate(2deg); }
  60%       { transform: translateX(-4px) rotate(-1deg); }
  80%       { transform: translateX(4px)  rotate(1deg); }
}

@keyframes sparklePop {
  0%   { opacity: 0; transform: scale(0) rotate(-20deg); }
  60%  { opacity: 1; transform: scale(1.3) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ── Coverage section card ── */
.coverage-section { padding: 40px 24px; }
.coverage-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border-radius: 16px;
  padding: 48px 56px;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.coverage-content { max-width: 420px; }
.coverage-title   { font-size: 1.75rem; font-weight: 700; color: #0B2545; margin-bottom: 12px; }
.coverage-desc    { font-size: 1rem; color: #4a5568; line-height: 1.6; margin-bottom: 24px; }
.coverage-btn {
  background: #0B2545; color: #fff;
  border: none; border-radius: 999px;
  padding: 14px 28px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.coverage-btn:hover { background: #0d3560; }
.dotted-map-svg { width: 100%; max-width: 480px; height: auto; }

/* ── Coverage modal ── */
.coverage-modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 40px 36px;
  width: 100%;
  max-width: 620px;
  position: relative;
}
.coverage-modal-title { font-size: 1.4rem; font-weight: 700; color: #0B2545; margin-bottom: 24px; }
.coverage-label       { font-size: 0.95rem; color: #1a202c; font-weight: 500; display: block; margin-bottom: 8px; }
.required-star        { color: #e53e3e; margin-left: 2px; }
.coverage-input {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  padding: 14px 16px; font-size: 1rem; color: #1a202c;
  outline: none; margin-bottom: 20px;
  transition: border-color 0.2s;
}
.coverage-input:focus { border-color: #0B2545; }
.coverage-input::placeholder { color: #a0aec0; }

.coverage-submit-btn {
  width: 100%; padding: 15px;
  border: none; border-radius: 999px;
  background: #e2e8f0; color: #a0aec0;
  font-size: 1rem; font-weight: 600;
  cursor: not-allowed; transition: background 0.2s, color 0.2s;
}
.coverage-submit-btn--enabled {
  background: #0B2545; color: #fff; cursor: pointer;
}
.coverage-submit-btn--enabled:hover { background: #0d3560; }

/* ── Loading ── */
.coverage-loading {
  display: flex; flex-direction: column;
  align-items: center; padding: 20px 0 8px; gap: 16px;
}
.coverage-pulse-rings {
  position: relative; width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
}
.pulse-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid #0B2545; opacity: 0;
  animation: pulse-out 1.8s ease-out infinite;
}
.pulse-ring--1 { width: 100px; height: 100px; animation-delay: 0s; }
.pulse-ring--2 { width: 70px;  height: 70px;  animation-delay: 0.4s; }
.pulse-ring--3 { width: 44px;  height: 44px;  animation-delay: 0.8s; }
@keyframes pulse-out {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1);   opacity: 0; }
}

/* ── Result ── */
.coverage-result  { display: flex; flex-direction: column; align-items: center; gap: 28px; padding: 8px 0; }
.coverage-bands   { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.coverage-band-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.signal-icon-wrap {
  width: 110px; height: 110px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}
.band-label { font-size: 1rem; color: #1a202c; text-align: center; }
.band-label strong { color: #0B2545; }

.check-again-btn {
  background: none; border: none;
  font-size: 1rem; font-weight: 700;
  color: #0B2545; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}

.coverage-autocomplete-container gmp-place-autocomplete {
  width: 100%;
}

.coverage-autocomplete-container gmp-place-autocomplete::part(input) {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  outline: none;
  color: #1a202c;
  background: #fff;
}
