.gm-welcome-overlay{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}
.gm-welcome-panel{
  width: min(420px, 92vw);
  background: #0b1222;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}
.gm-welcome-header{ padding: 16px 16px 10px 16px; }
.gm-welcome-title{ font-weight: 800; font-size: 1.15rem; line-height: 1.15; }
.gm-welcome-sub{ margin-top: 6px; font-size: 0.95rem; opacity: 0.85; }
.gm-welcome-actions{
  padding: 12px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gm-welcome-btn{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 12px;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.25);
}
.gm-welcome-btn:active{ transform: translateY(1px); }
.gm-welcome-btn.is-azure{ background:#3399CC; color:#fff; }
.gm-welcome-btn.is-blue{ background:#1E3A8A; color:#fff; }
.gm-welcome-btn.is-red{ background:#dc2626; color:#fff; }
.gm-welcome-btn.is-gold{ background:#f59e0b; color:#111827; }
.gm-welcome-btn.is-brown{ background:#6b4b3a; color:#fff; }
.gm-welcome-btn.is-gray{ background:#9ca3af; color:#111827; }


/* Ensure the HTML 'hidden' attribute actually hides the overlay (overrides display:flex) */
.gm-welcome-overlay[hidden]{
  display: none !important;
}
