/* =====================================================
   global.css — Vural Analiz
   Tüm sayfalarda ortak olan temel stiller.
   components.css buraya birleştirildi.
   ===================================================== */

/* ===== CSS DEĞİŞKENLERİ ===== */
:root {
  --nav-bg: #3182ce;
  --nav-height: 45px;
  --bnav-height: 65px;
  /* Sticky elemanların (ör. canlı sohbet mesaj kutusu) alt navbar'ın hemen
     üstüne oturması için kullanılan pay. Normalde bar yüksekliği + safe-area
     kadardır; klavye açılıp navbar gizlendiğinde bottom-nav.php bunu 0'a
     çeker (bkz. o dosyadaki visualViewport listener'ı — artık hem APK'da
     hem mobil tarayıcıda çalışır). */
  --bnav-effective-height: calc(var(--bnav-height) + env(safe-area-inset-bottom));
  --bg-color: #f0f2f5;
  --card-bg: rgba(255,255,255,0.9);
  --primary-text: #2d3436;
  --safe-area-top: env(safe-area-inset-top, 0px);
  /* Form/buton aksiyon rengi: nav-bg ile aynı marka mavisi, tek kaynaktan yönetilsin diye alias */
  --primary-blue: var(--nav-bg);
  --primary-blue-hover: #2b6cb0;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }

/* ===== BODY TEMELİ ===== */
body {
  background-color: var(--bg-color);
  font-family: 'Inter', sans-serif;
  color: var(--primary-text);
  font-size: 14px;
  padding-top: calc(var(--nav-height) + var(--safe-area-top));
}

/* ===== NAVBAR ===== */
.app-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 16px;
  padding-top: var(--safe-area-top);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1000;
  height: calc(var(--nav-height) + var(--safe-area-top));
}

.app-nav-brand {
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-nav-brand img { border-radius: 6px; }

.app-nav-home {
  color: rgba(255,255,255,.8) !important;
  text-decoration: none !important;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.app-nav-home:hover {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== APK MODU — NAVBAR ===== */
body.is-app .app-nav {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  padding-left: 6px;
}

body.is-app .app-nav-brand {
  text-align: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.is-app .app-nav-back {
  display: flex !important;
  visibility: hidden;
}

body.is-app .nav-right {
  justify-content: flex-end;
}

/* Geri tuşu — normalde gizli, APK'da görünür */
.app-nav-back {
  display: none;
  color: rgba(255,255,255,.9) !important;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background .2s;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-left: -2px;
}

/* ===== MATCH DATE ===== */
.match-date { font-size: 11px; color: #6c757d; font-style: italic; display: block; margin-top: 0; }

/* ===== TABLO SATIR YAZILARI ===== */
.table tbody td {
  color: #4a4a4a;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .table tbody td { font-size: 12px; }
}

/* ===== FOOTER ===== */
.footer-logo { opacity: .8; }

/* ===== KART ===== */
.card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

/* ===== FORM / AUTH KART BİLEŞENLERİ =====
   login.php, kullanici-duzenle.php, kayit-ol.php gibi tek-kolon form
   sayfalarının ortak iskeleti. Sayfaya özel farklar (max-width, arkaplan
   deseni vb.) ilgili sayfanın kendi <style> bloğunda override edilir. */
.login-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 15px;
}

.login-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 15px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.form-label {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.input-group {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #cbd5e0;
  transition: all 0.2s ease;
}

.input-group:focus-within {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

.input-group-text {
  background-color: #f8fafc !important;
  border: none !important;
  color: #718096 !important;
  width: 42px;
  justify-content: center;
}

.form-control {
  padding: 11px 12px;
  font-size: 0.9rem;
  background-color: #f8fafc !important;
}

.form-control::placeholder { color: #a0aec0 !important; opacity: 0.7 !important; }

.form-control:focus {
  background-color: #ffffff !important;
  border-color: #3b82f6 !important;
  box-shadow: none !important;
}

/* Yetkisiz kullanıcıya kilitli alan görünümü (kullanici-duzenle.php vb.) */
.form-control:disabled {
  background-color: #e2e8f0 !important;
  color: #4a5568 !important;
  cursor: not-allowed;
}

.btn-login {
  background-color: var(--primary-blue) !important;
  border: none;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: 50px;
  width: 100%;
  transition: background-color 0.2s ease;
  margin-top: 10px;
}

.btn-login:hover, .btn-login:focus {
  background-color: var(--primary-blue-hover) !important;
}

.login-footer-links {
  text-align: center;
  margin-top: 20px;
}

.login-footer-links a {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
}

.login-footer-links a:hover {
  color: var(--primary-blue-hover);
  text-decoration: underline;
}

/* ===== AKSIYON BUTONU ===== */
.btn-action {
  width: 32px; height: 32px;
  padding: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

/* ===== MENU KARTLARI (index.php ana menü) ===== */
.menu-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 15px;
  height: 140px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: transform .35s cubic-bezier(.175,.885,.32,1.275), box-shadow .35s, background .35s;
}

.menu-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: var(--card-color, var(--nav-bg));
  transition: width .35s ease;
  z-index: 2;
}
.menu-card:hover::before { width: 100%; }

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,.1);
  background: #fff;
}

.menu-card i {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--card-color, var(--nav-bg));
  transition: transform .3s;
  display: inline-block;
}
.menu-card:hover i { transform: scale(1.12); }

.menu-card .nesine-card-icon {
  object-fit: contain;
  border-radius: 4px;
  transition: transform .3s;
  display: inline-block;
  filter: invert(80%) sepia(58%) saturate(3000%) hue-rotate(360deg) brightness(103%) contrast(103%);
}
.menu-card:hover .nesine-card-icon { transform: scale(1.12); }

.menu-title {
  font-weight: 600;
  font-size: .85rem;
  color: #4a4a4a;
  text-align: center;
}

.c-info      { --card-color: #0dcaf0; }
.c-success   { --card-color: #4dc607; }
.c-warning   { --card-color: #ffc107; }
.c-danger    { --card-color: #dc3545; }
.c-primary   { --card-color: #0d6efd; }
.c-dark      { --card-color: #212529; }
.c-mor       { --card-color: #8e44ad; }

/* ===== KLASİK BOOTSTRAP BUTON TARZI ===== */
.menu-btn-custom {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0.375rem 0.75rem !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  border-radius: 0.375rem !important;
  border: 1px solid transparent !important;
  text-decoration: none !important;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !important;
  width: 100% !important;
  cursor: pointer !important;
}

.menu-btn-custom:hover { filter: brightness(90%); }

.bg-gradient-primary-custom   { background-color: #0d6efd; color: #fff; }
.bg-gradient-danger-custom    { background-color: #dc3545; color: #fff; }
.bg-gradient-success-custom   { background-color: #198754; color: #fff; }
.bg-gradient-info-custom      { background-color: #0dcaf0; color: #000; }
.bg-gradient-warning-custom   { background-color: #ffc107; color: #000; }
.bg-gradient-secondary-custom { background-color: #6c757d; color: #fff; }

@media (max-width: 768px) {
  .menu-card        { height: 115px; padding: 16px 10px; }
  .menu-card i      { font-size: 1.75rem; margin-bottom: 8px; }
  .menu-card .nesine-card-icon { height: 26px !important; margin-bottom: 8px !important; }
  .menu-title       { font-size: .72rem; }
}

/* ===== BOTTOM NAV ===== */
.app-bottom-nav { display: none; }

@media (max-width: 768px) {
  body { padding-bottom: calc(var(--bnav-height) + 6px + env(safe-area-inset-bottom)) !important; }

  .app-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(var(--bnav-height) + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    padding: 4px 4px 0;
  }

  .app-nav-item {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: .6rem;
    font-weight: 600;
    flex: 1;
    padding: 6px 2px;
    border-radius: 12px;
    transition: color .2s;
    gap: 3px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }

  .app-nav-item i { font-size: 1.2rem; transition: transform .2s; }

  .app-nav-item .nesine-icon {
    width: 20px; height: 20px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(11%) saturate(394%) hue-rotate(182deg) brightness(95%) contrast(87%);
    transition: filter .2s, transform .2s;
  }

  .app-nav-item.active { color: var(--nav-bg); }
  .app-nav-item.active i { transform: translateY(-2px); }

  .app-nav-item.active .nesine-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(85%) saturate(1480%) hue-rotate(191deg) brightness(94%) contrast(89%);
    transform: translateY(-2px);
  }

  .app-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 4px; height: 4px;
    background: var(--nav-bg);
    border-radius: 50%;
  }

  .app-nav-item:active i,
  .app-nav-item:active .nesine-icon { transform: scale(.88); }
}

.app-nav-home:focus, 
.app-nav-home:active, 
.app-nav-home.show {
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  color: #fff !important;
}

.dropdown-item:hover {
  background-color: #e6f6ff !important;
  color: #3182ce !important;
}

body.is-app { padding-bottom: calc(var(--bnav-height) + 6px + env(safe-area-inset-bottom)) !important; }

body.is-app .app-bottom-nav {
  display: flex !important; 
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: env(safe-area-inset-bottom);
  height: calc(var(--bnav-height) + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
  padding: 4px 4px 0;
}

body.is-app .app-nav-item {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: .6rem;
  font-weight: 600;
  flex: 1;
  padding: 6px 2px;
  border-radius: 12px;
  transition: color .2s;
  gap: 3px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

body.is-app .app-nav-item i { font-size: 1.2rem; transition: transform .2s; }

body.is-app .app-nav-item .nesine-icon {
  width: 20px; height: 20px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  filter: brightness(0) saturate(100%) invert(71%) sepia(11%) saturate(394%) hue-rotate(182deg) brightness(95%) contrast(87%);
  transition: filter .2s, transform .2s;
}

body.is-app .app-nav-item.active { color: var(--nav-bg); }
body.is-app .app-nav-item.active i { transform: translateY(-2px); }

body.is-app .app-nav-item.active .nesine-icon {
  filter: brightness(0) saturate(100%) invert(42%) sepia(85%) saturate(1480%) hue-rotate(191deg) brightness(94%) contrast(89%);
  transform: translateY(-2px);
}

body.is-app .app-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  width: 4px; height: 4px;
  background: var(--nav-bg);
  border-radius: 50%;
}

@media (max-width:576px){
  .menu-btn-custom{ font-size:12px !important; padding:8px 12px !important; gap:6px !important; }
  .menu-btn-custom i{ font-size:.9rem !important; }
}

body.is-app .hide-on-app { display: none !important; }

.badge-live {
  animation: blinker 1.5s linear infinite;
  background-color: #dc3545;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  display: inline-block;
}
@keyframes blinker { 50% { opacity: 0; } }

.result-box {
  font-weight: bold;
  width: 30px;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  background: #eee;
}
.official { background: #198754; color: white; }

@media (max-width: 768px) {
  .result-box { width: 24px; font-size: 12px; }
}

.dk-cell { font-size: 11px; font-style: italic; display: block; margin-top: 2px; }
.empty-state { padding: 40px; background: white; border-radius: 15px; text-align: center; }

.table thead th { background-color: #212529 !important; color: #fff !important; }

@media (max-width: 768px) {
  #kontrol-tablosu th,
  #kontrol-tablosu td { font-size: 12px; padding: 6px 8px; }
  .match-date { font-size: 10px; }
}

#wrapper { width: 100%; }

/* NOT: Eskiden burada çıplak `header { position:fixed; ...; background:#3182ce; }`
   selector'ü de vardı. .app-nav class'ıyla birebir aynı işi (aynı fixed konumlama,
   aynı box-shadow) yapıyordu, sadece rengi hardcoded #3182ce yazıyordu (var(--nav-bg)
   yerine). header-menu.php'deki <header> elemanı zaten class="app-nav" taşıyor,
   dolayısıyla bu selector saf mükerrerdi ve kaldırıldı. Sitede class'sız çıplak
   <header> kullanan başka bir sayfa varsa (yoktu, ama kontrol etmekte fayda var)
   onu da .app-nav class'ına geçirmek gerekir. */

.btn-right:hover, .btn-back:hover { background: rgba(255,255,255,0.15); }
.nav { padding: 20px; display: flex; flex-direction: column; gap: 15px; }

.desktop-menu { display: none; }
@media (min-width: 768px) {
  .desktop-menu { display: flex; flex: 1; justify-content: center; gap: 10px; }
  .app-nav-brand { min-width: 140px; }
  .nav-right { min-width: 140px; justify-content: flex-end; }
  .desktop-menu a {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15); color: #fff; text-decoration: none;
    border-radius: 8px; font-weight: 600; font-size: 13px; transition: 0.2s;
  }
  .desktop-menu a:hover { background: rgba(255, 255, 255, 0.28); }
  .desktop-menu a i { width: 16px; text-align: center; font-size: 0.9rem; }
}

body.is-app .desktop-menu { display: none !important; }

body.modal-open { overflow: hidden !important; }
@media (max-width: 768px) {
  /* NOT: 70px/80px sabit rakamlar yerine --bnav-effective-height kullanılıyor.
     Bu değişken bottom-nav.php'deki JS tarafından klavye açıkken 0px'e,
     kapalıyken navbar'ın gerçek yüksekliğine (+safe-area) çekiliyor — böylece
     navbar gizlendiğinde modal onun eski yerini de kullanabiliyor. */
  .modal { padding-bottom: calc(var(--bnav-effective-height) + 5px) !important; }
  .modal-dialog {
    /* 100vh: eski/desteklemeyen tarayıcılar için fallback (asıl satır, önce yazılır). */
    max-height: calc(100vh - var(--bnav-effective-height) - 15px) !important;
    /* 100dvh: dynamic viewport height — Chrome/Opera gibi mobil tarayıcılarda adres
       çubuğu + alt gezinme çubuğunu da hesaba katan GERÇEK görünür alanı baz alır.
       Bunu destekleyen tarayıcılarda yukarıdaki 100vh satırını ezer (aynı özellik iki
       kez yazılınca CSS son geçerli değeri kullanır); desteklemeyenlerde bu satır
       geçersiz kalıp üsttekine düşülür. Modal footer'ının (ör. kupon bedeli satırı)
       tarayıcının kendi alt çubuğunun arkasında kesilmesini önler. */
    max-height: calc(100dvh - var(--bnav-effective-height) - 15px) !important;
    margin-top: 10px !important; margin-bottom: 0 !important;
  }
  .modal-content {
    max-height: calc(100vh - var(--bnav-effective-height) - 15px) !important;
    max-height: calc(100dvh - var(--bnav-effective-height) - 15px) !important;
    overflow: hidden;
  }
  .modal-body { overflow-y: auto !important; -webkit-overflow-scrolling: touch !important; }
}

*:focus { outline: none !important; box-shadow: none !important; }

.col-3-fixed { table-layout: fixed; width: 100%; }
.col-3-fixed th, .col-3-fixed td { width: 33.33% !important; }
.col-4-fixed { table-layout: fixed; width: 100%; }
.col-4-fixed th, .col-4-fixed td { width: 25% !important; }

/* CSS dosyanın en altına bunu yapıştır */
/* NOT: Eskiden bu kural "body.is-app .app-bottom-nav.keyboard-visible" idi, yani
   sadece APK içindeyken çalışıyordu. bottom-nav.php'deki JS artık klavye açıldığında
   bu class'ı APK'da olduğu gibi mobil tarayıcıda da (Chrome/Opera Android) ekliyor;
   bu yüzden kural buradan da is-app şartı kaldırılarak genelleştirildi. Aksi halde
   mobil tarayıcıda class DOM'a ekleniyor ama karşılığında hiçbir CSS çalışmıyordu ve
   navbar (position:fixed;bottom:0) klavye açıkken visual viewport'a göre konumlanıp
   klavyenin hemen üstünde asılı kalıyordu. */
.app-bottom-nav.keyboard-visible {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
}

/* Üyelik uyarısı / sayfa giriş kutusu — aynı görsel dilin iki farklı isimle
   tekrar tanımlanmasını önlemek için tek blokta birleştirildi.
   (.uyelik-uyari ve .page-intro birebir aynı stile sahipti) */
.uyelik-uyari,
.page-intro {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  font-size: 13.5px;
  color: #475569;
}

/* Mesajı belirginleştirmek için animasyon ve stil */
.highlight-message {
  animation: highlightAnim 2s ease;
  border-color: #0d6efd !important;
  background-color: #eef6ff !important;
}

@keyframes highlightAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* ===== MİNİ GİRİŞ FORMU (navbar) ===== */
.mini-giris-form {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-giris-form .mini-input {
  height: 30px;
  padding: 0 10px;
  font-size: 12px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  width: 110px;
}

.mini-giris-form .mini-input::placeholder { color: rgba(255,255,255,0.7); }
.mini-giris-form .mini-input:focus { background: rgba(255,255,255,0.28); }

.mini-giris-btn {
  height: 30px;
  min-width: 34px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  cursor: pointer;
  flex-shrink: 0;
}
.mini-giris-btn:hover { background: rgba(255,255,255,0.4); }
.mini-giris-btn:disabled { opacity: .7; cursor: default; }

.mini-kayit-link {
  color: #fff;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  transition: .2s;
  white-space: nowrap;
}
.mini-kayit-link:hover { background: rgba(255,255,255,0.28); color:#fff; }

/* Profil dropdown içindeki dikey (misafir) versiyon */
.mini-giris-form.dropdown-form {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 10px 16px 14px;
}
.mini-giris-form.dropdown-form .mini-input {
  width: 100%;
  color: #2d3436;
  background: #f1f5f9;
}
.mini-giris-form.dropdown-form .mini-input::placeholder { color: #94a3b8; }
.mini-giris-form.dropdown-form .mini-giris-btn {
  width: 100%;
  background: #3182ce;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  gap: 6px;
}
.mini-giris-form.dropdown-form .mini-giris-btn:hover { background: #2b6cb0; }


/* ===== SWEETALERT2 — SİTE GENELİ =====
   NOT: .swal2-deny de confirm/cancel ile birlikte eklendi — üç butonlu
   (showDenyButton:true) popup'larda (ör. filtre kayıt uyarısı) deny butonu
   eskiden bu kuralların dışında kalıp SweetAlert2'nin varsayılan (daha büyük)
   boyutunda görünüyordu. */
.swal2-popup{ border-radius:14px; font-family:'Inter',sans-serif; padding-bottom:1.6rem; }
.swal2-title{ font-size:1.2rem !important; }
.swal2-html-container{ font-size:.9rem !important; }
.swal2-textarea{ font-size:13.5px !important; }
.swal2-confirm, .swal2-deny, .swal2-cancel{
  border-radius:8px !important; font-weight:600 !important; font-size:.85rem !important;
  padding:.5rem 1.1rem !important; box-shadow:none !important;
}
.swal2-cancel{ background:#6c757d !important; }
.swal2-textarea { min-height: 220px !important; }

@media (max-width: 576px){
  .swal2-popup{ padding-bottom:1.2rem; width:90vw !important; }
  .swal2-title{ font-size:1.05rem !important; }
  .swal2-html-container{ font-size:.82rem !important; }
  .swal2-textarea{ font-size:13px !important; }
  .swal2-confirm, .swal2-deny, .swal2-cancel{ font-size:.78rem !important; padding:.45rem .9rem !important; }
}