/* ============================================================
   İŞLETME KONTROL PANELİ — socialtagtr.com/isletmeadi

   Tasarım dili: iOS Denetim Merkezi.
   - Saf siyah zemin, üzerinde işletmenin renginde yumuşak ışık
   - Yuvarlak kare modüller ve daire kumandalar
   - Etkin kumanda, işletmenin renginde dolu olur
   - Marka logoları kendi orijinal renklerinde kalır
   ============================================================ */

body.panel {
  background: #000;
}

body.panel .page {
  position: relative;
  z-index: 1;
  padding: 20px 16px 52px;
}

.page > .container {
  max-width: 440px;
}

/* Zeminde işletmenin renginde geniş ışık — Denetim Merkezi'nin
   arkasındaki bulanık duvar kâğıdının karşılığı. */
.pnl-isik {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: pnlIsik 1.1s ease-out 0.05s both;
  background:
    radial-gradient(60% 42% at 50% 0%, var(--biz-accent-glow, rgba(255, 255, 255, 0.1)) 0%, transparent 72%),
    radial-gradient(45% 32% at 12% 42%, var(--biz-accent-glow, rgba(255, 255, 255, 0.07)) 0%, transparent 70%),
    radial-gradient(50% 34% at 95% 78%, rgba(255, 255, 255, 0.045) 0%, transparent 72%);
}

@keyframes pnlIsik {
  to {
    opacity: 0.85;
  }
}

body.panel::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes pnlGir {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.965);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Üst bar: işletmenin kimliği ---------- */

.pnl-ust {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 4px 4px 18px;
  animation: pnlGir 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pnl-logo-kutu {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
}

.pnl-logo-hale {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--biz-accent-glow, rgba(255, 255, 255, 0.14)) 0%, transparent 66%);
  pointer-events: none;
}

.pnl-logo-cerceve {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
}

.pnl-logo-cerceve::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 2;
  background: linear-gradient(112deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: pnlParla 1.2s cubic-bezier(0.3, 0.7, 0.4, 1) 0.4s both;
  pointer-events: none;
}

@keyframes pnlParla {
  to {
    transform: translateX(120%);
  }
}

.pnl-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(180deg, #1d1d1f, #121214);
  box-shadow: inset 0 0 0 1px var(--biz-accent-line, rgba(255, 255, 255, 0.2)),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.pnl-logo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--biz-accent);
}

.pnl-ust-ic {
  flex: 1;
  min-width: 0;
}

.pnl-ad {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.026em;
}

.pnl-adres {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(235, 235, 245, 0.5);
  overflow-wrap: anywhere;
}

.pnl-rehber {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--biz-accent-bg);
  border: 1px solid var(--biz-accent-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  color: var(--biz-accent);
  cursor: pointer;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: transform 0.16s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.16s ease;
}

.pnl-rehber svg {
  width: 20px;
  height: 20px;
}

.pnl-rehber:active {
  transform: scale(0.88);
}

/* ---------- Akış ---------- */

.pnl-akis {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- Konsol: satırlar ve işlem rozetleri ---------- */
/* ---------------- Ortak öğe ---------------- */

.ogem {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  text-decoration: none;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.ogem-ikon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.09)),
    var(--biz-accent-tint, rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.ogem-ikon svg {
  width: 23px;
  height: 23px;
}

.ogem-ic {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ogem-ad {
  font-size: 14.5px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -0.016em;
}

.ogem-alt {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(235, 235, 245, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Sağdaki işlem rozeti — "burada bir şey yapılır" hissi */
.ogem-rozet {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--biz-accent-bg);
  border: 1px solid var(--biz-accent-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--biz-accent);
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ogem-rozet svg {
  width: 12px;
  height: 12px;
}

.ogem:hover .ogem-rozet {
  border-color: var(--biz-accent-border-strong);
  transform: translateX(2px);
}

/* Her seçenek kendi balonunda — birleşik panel değil. */
.konsol-blok {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ogem {
  width: 100%;
  padding: 13px 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  backdrop-filter: blur(26px) saturate(150%);
}

.ogem:hover {
  background: rgba(255, 255, 255, 0.125);
  border-color: var(--biz-accent-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 0 26px var(--biz-accent-glow, transparent);
}

.ogem:active {
  transform: scale(0.982);
  transition-duration: 0.09s;
}

.ogem-ikon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}

.ogem-ikon svg {
  width: 21px;
  height: 21px;
}

/* Bölüm başlığı — panel bölmelerini ayırır */
.blok-baslik {
  padding: 0 6px 8px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(235, 235, 245, 0.42);
}

.pnl-akis > * {
  animation: pnlGir 0.58s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i, 0) * 60ms + 110ms);
}

/* Modül: Denetim Merkezi'ndeki yuvarlak kare kutuların karşılığı */
.modul {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  backdrop-filter: blur(28px) saturate(150%);
  overflow: hidden;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

/* ---------- Wi-Fi modülü ---------- */

.wifi-modul.acik {
  border-color: var(--biz-accent-border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 0 32px var(--biz-accent-glow, transparent);
}

.wifi-bas {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 15px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.16s cubic-bezier(0.16, 1, 0.3, 1);
}

.wifi-bas:active {
  transform: scale(0.984);
}

/* Denetim Merkezi'ndeki mavi Wi-Fi dairesi: burada işletmenin rengi */
.kumanda-daire {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  transition: background 0.26s cubic-bezier(0.16, 1, 0.3, 1), color 0.26s ease, box-shadow 0.26s ease;
}

.kumanda-daire svg {
  width: 23px;
  height: 23px;
}

/* Denetim Merkezi'ndeki mavi Wi-Fi dairesinin karşılığı:
   burada işletmenin kendi rengiyle dolu. */
.wifi-modul .kumanda-daire {
  background: var(--biz-accent);
  color: #0a0a0a;
  box-shadow: 0 0 20px var(--biz-accent-glow, transparent);
}

.wifi-modul.acik .kumanda-daire {
  box-shadow: 0 0 30px var(--biz-accent-glow, transparent);
}

.modul-ad {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modul-baslik {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.016em;
}

.modul-alt {
  font-size: 11.5px;
  color: rgba(235, 235, 245, 0.52);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wifi-chevron {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: rgba(235, 235, 245, 0.45);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), color 0.24s ease;
}

.wifi-chevron svg {
  width: 15px;
  height: 15px;
}

.wifi-modul.acik .wifi-chevron {
  transform: rotate(180deg);
  color: var(--biz-accent);
}

.wifi-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.34s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.26s ease;
}

.wifi-panel-ic {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0 15px;
}

.wifi-modul.acik .wifi-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.wifi-modul.acik .wifi-panel-ic {
  padding: 2px 15px 15px;
}

/* ---------- Değer satırı (Wi-Fi bilgileri / IBAN) ---------- */

.deger-satir {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.42);
  border-radius: 16px;
  padding: 10px 10px 10px 14px;
}

.deger-ic {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.deger-etiket {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(235, 235, 245, 0.45);
}

.deger-metin {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.94);
  overflow-wrap: anywhere;
}

.copy-btn {
  flex: 0 0 auto;
  background: var(--biz-accent-bg);
  color: var(--biz-accent);
  border: 1px solid var(--biz-accent-border);
  border-radius: 11px;
  padding: 8px 13px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.14s cubic-bezier(0.16, 1, 0.3, 1), background 0.14s ease, color 0.14s ease;
}

.copy-btn:active {
  transform: scale(0.9);
}

.copy-btn.ok {
  background: var(--biz-accent);
  color: #0a0a0a;
}

/* Etkin kumanda düğmesi — dolu vurgu rengi */
.wifi-connect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--biz-accent);
  color: #0a0a0a;
  border: none;
  border-radius: 16px;
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.012em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 5px 20px var(--biz-accent-glow, transparent);
  transition: transform 0.14s cubic-bezier(0.16, 1, 0.3, 1);
}

.wifi-connect-btn svg {
  width: 17px;
  height: 17px;
}

.wifi-connect-btn:active {
  transform: scale(0.975);
}

/* ---------- IBAN modülü ---------- */

.iban-modul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 13px 15px 15px;
}

.iban-bas {
  display: flex;
  align-items: center;
  gap: 14px;
}

.iban-modul .kumanda-daire {
  background: linear-gradient(rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.09)),
    var(--biz-accent-tint, rgba(255, 255, 255, 0.03));
  color: var(--biz-accent);
}

/* ---------- Alt bölüm ---------- */

.biz-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.qr-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(235, 235, 245, 0.62);
  border-radius: 999px;
  padding: 10px 17px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.qr-toggle svg {
  width: 14px;
  height: 14px;
}

.qr-toggle:hover {
  color: #fff;
  border-color: var(--biz-accent-border);
}

.qr-box {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.36s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}

.qr-box > div {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.qr-box.open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.qr-box img {
  width: 168px;
  height: 168px;
  background: #fff;
  padding: 12px;
  border-radius: 22px;
  margin-top: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.65);
}

.qr-box p {
  font-size: 11.5px;
  color: rgba(235, 235, 245, 0.5);
  text-align: center;
  margin: 0 0 4px;
  max-width: 230px;
}

.st-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 28px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.032);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.st-brand:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.st-brand:active {
  transform: scale(0.99);
}

.st-brand-logo {
  height: 10px;
  width: auto;
  opacity: 0.78;
  flex: 0 0 auto;
}

.st-brand-line {
  flex: 1;
  font-size: 11.5px;
  color: rgba(235, 235, 245, 0.5);
  text-align: left;
}

.st-brand-line strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.st-brand-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: rgba(235, 235, 245, 0.45);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.st-brand-cta svg {
  width: 14px;
  height: 14px;
}

.st-brand:hover .st-brand-cta {
  color: #fff;
  transform: translateX(3px);
}

.state-msg {
  text-align: center;
  color: rgba(235, 235, 245, 0.5);
  padding: 50px 10px;
}

/* ---------- Sadakat modülü ---------- */

#loyaltyBox:empty {
  display: none;
}

.loyalty-card {
  position: relative;
  padding: 14px 15px 15px;
  border-radius: 26px;
  border: 1px solid var(--biz-accent-border);
  background: linear-gradient(180deg, var(--biz-accent-bg), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  backdrop-filter: blur(28px) saturate(150%);
  overflow: hidden;
}

.loyalty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--biz-accent), transparent);
  opacity: 0.6;
}

.loyalty-card.ready {
  border-color: var(--biz-accent-border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 32px var(--biz-accent-glow, transparent);
}

.loyalty-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.loyalty-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--biz-accent);
}

.loyalty-count {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(235, 235, 245, 0.55);
  font-variant-numeric: tabular-nums;
}

.loyalty-stamps {
  display: grid;
  grid-template-columns: repeat(var(--sutun, 6), 34px);
  justify-content: center;
  gap: 9px;
  margin-bottom: 14px;
}

.stamp {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px dashed var(--biz-accent-border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(235, 235, 245, 0.5);
}

.stamp.filled {
  border-style: solid;
  border-color: var(--biz-accent);
  background: var(--biz-accent);
  color: #0a0a0a;
  font-size: 15px;
  box-shadow: 0 2px 12px var(--biz-accent-glow, transparent);
  animation: stampIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--s, 0) * 42ms + 0.3s);
}

@keyframes stampIn {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.loyalty-msg {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(235, 235, 245, 0.6);
  text-align: center;
  margin-bottom: 14px;
}

.loyalty-msg strong {
  color: #fff;
  font-weight: 650;
}

.loyalty-btn {
  width: 100%;
  padding: 13px 16px;
  border-radius: 16px;
  border: none;
  background: var(--biz-accent);
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.012em;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 5px 20px var(--biz-accent-glow, transparent);
  transition: transform 0.14s cubic-bezier(0.16, 1, 0.3, 1);
}

.loyalty-btn:active {
  transform: scale(0.975);
}

.loyalty-btn[disabled] {
  opacity: 0.5;
  cursor: default;
}

.loyalty-code {
  display: none;
  padding: 15px 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--biz-accent-border-strong);
  background: rgba(0, 0, 0, 0.45);
  text-align: center;
}

.loyalty-code.open {
  display: block;
  animation: pnlGir 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.loyalty-code-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(235, 235, 245, 0.45);
  margin-bottom: 9px;
}

.loyalty-code-value {
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: var(--biz-accent);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 28px var(--biz-accent-glow, transparent);
}

.loyalty-code-timer {
  margin-top: 9px;
  font-size: 11.5px;
  color: rgba(235, 235, 245, 0.5);
  font-variant-numeric: tabular-nums;
}

.loyalty-error {
  margin-top: 9px;
  font-size: 12.5px;
  color: #ff8f8f;
  min-height: 16px;
  text-align: center;
}

.loyalty-note {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--biz-accent-border);
  font-size: 10.5px;
  line-height: 1.55;
  color: rgba(235, 235, 245, 0.42);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .pnl-isik,
  .pnl-ust,
  .pnl-akis > *,
  .pnl-logo-cerceve::after,
  .stamp.filled,
  .loyalty-code.open {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   Eski style.css'ten sızabilecek kuralları etkisizleştir.
   Bu dosya hangi style.css sürümüyle birlikte yüklenirse
   yüklensin panel görünümü aynı kalsın diye.
   ============================================================ */

body.panel .wifi-panel {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

body.panel .qr-toggle,
body.panel .qr-box,
body.panel .loyalty-card,
body.panel .loyalty-code {
  margin-top: 0;
}

body.panel .st-brand {
  flex-direction: row;
  text-align: left;
}

body.panel .st-brand-cta {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  font-size: 0;
}
