/* ===== Admin extras: users / user-detail / tickets / paketler / settings / diagnostics
       + sag alt destek widget                                                     ===== */

/* ---- Users list ---- */
.users-list {
  display: grid;
  gap: 12px;
}

.user-row {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.user-row:hover {
  border-color: #b8c1e8;
  box-shadow: 0 6px 18px rgba(20, 31, 77, 0.06);
}

.user-row.is-admin {
  background: linear-gradient(180deg, #f6f1ff, #fff);
  border-color: #d6c5ff;
}

.user-row-main {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.user-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5a3ad8, #8b5dff);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.user-row.is-admin .user-avatar {
  background: linear-gradient(135deg, #b9560f, #f0a02b);
}

.user-info {
  display: grid;
  gap: 4px;
}

.user-name {
  font-weight: 800;
  font-size: 15px;
}

.user-role-pill {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ffe1b8;
  color: #92520a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.user-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.user-sub-dot {
  color: #c1c6d8;
}

.user-stats {
  display: flex;
  gap: 14px;
}

.user-stat {
  text-align: center;
  min-width: 64px;
}

.user-stat .num {
  font-weight: 900;
  font-size: 16px;
  color: #1a1f3d;
}

.user-stat .num-sub {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.user-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.user-actions form {
  margin: 0;
}

.user-self-tag {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .user-row { grid-template-columns: 1fr; }
  .user-stats { justify-content: flex-start; }
}

/* ---- User detail ---- */
.user-detail-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
}

.user-detail-meta dl,
.user-detail-meta-list {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 6px 12px;
  margin: 0 0 14px;
}

.user-detail-meta dt,
.user-detail-meta-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.user-detail-meta dd,
.user-detail-meta-list dd {
  margin: 0;
  font-size: 14px;
}

.user-detail-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.password-form {
  display: grid;
  gap: 10px;
}

.password-form label {
  display: grid;
  gap: 6px;
}

.password-form label span {
  font-size: 12.5px;
  font-weight: 800;
  color: #4b5168;
}

.password-form input,
.settings-form input,
.settings-form textarea,
.settings-form select,
.ticket-create-form input,
.ticket-create-form textarea,
.ticket-create-form select,
.ticket-reply-form textarea,
.paket-form input,
.paket-form textarea,
.paket-form select,
.paket-row input,
.paket-row textarea,
.paket-row select {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafbff;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
}

.password-form input:focus,
.settings-form input:focus,
.settings-form textarea:focus,
.settings-form select:focus,
.ticket-create-form input:focus,
.ticket-create-form textarea:focus,
.ticket-reply-form textarea:focus,
.paket-form input:focus,
.paket-form textarea:focus,
.paket-row input:focus,
.paket-row textarea:focus {
  outline: none;
  border-color: #7c63ff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(124, 99, 255, 0.14);
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 900px) {
  .admin-grid-2 { grid-template-columns: 1fr; }
}

.admin-mini-list {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.admin-mini-list li {
  padding: 8px 10px;
  border-radius: 8px;
  background: #f7f9ff;
  font-size: 13.5px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.mini-badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ecf0ff;
  color: #2c3a8a;
  font-size: 11px;
  font-weight: 800;
}

.mini-badge.success {
  background: #ddf5e6;
  color: #1a6f43;
}

.muted-text {
  color: var(--muted);
  font-size: 13px;
}

.ab-num {
  text-align: right;
}

.hint-text {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 12px;
}

/* ---- Tickets list ---- */
.ticket-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 4px;
}

.ticket-kpi {
  display: block;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: inherit;
  transition: border-color 0.15s ease, transform 0.12s ease;
}

.ticket-kpi:hover {
  transform: translateY(-2px);
  border-color: #b8c1e8;
}

.ticket-kpi.active {
  border-color: #7c63ff;
  background: linear-gradient(180deg, #f4f0ff, #fff);
}

.ticket-kpi .kpi-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticket-kpi .kpi-value {
  font-size: 28px;
  font-weight: 950;
  color: #1a1f3d;
  margin-top: 6px;
}

.ticket-kpi .kpi-hint {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .ticket-kpi-row { grid-template-columns: 1fr 1fr; }
}

.ticket-num {
  font-weight: 800;
  color: #5a3ad8;
}

.ticket-konu {
  font-weight: 700;
  color: #1a1f3d;
}

.ticket-yeni {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ffeded;
  color: #b51e2c;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* ---- Ticket detail / thread ---- */
.ticket-detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
}

@media (max-width: 900px) {
  .ticket-detail-grid { grid-template-columns: 1fr; }
}

.ticket-thread {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  background: #f7f9ff;
  max-height: 560px;
  overflow: auto;
}

.ticket-msg {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  max-width: 88%;
}

.ticket-msg.is-admin {
  align-self: flex-end;
  margin-left: auto;
  background: linear-gradient(180deg, #f0f6ff, #fff);
  border-color: #c5dafa;
}

.ticket-msg-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.ticket-msg-meta strong {
  color: #1a1f3d;
}

.ticket-msg-body {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.55;
}

.ticket-status-form,
.ticket-reply-form {
  display: grid;
  gap: 10px;
}

.ticket-status-form label,
.ticket-reply-form label,
.ticket-create-form label,
.password-form label {
  display: grid;
  gap: 6px;
}

.ticket-status-form label span,
.ticket-reply-form label span,
.ticket-create-form label span {
  font-size: 12.5px;
  font-weight: 800;
  color: #4b5168;
}

.ticket-status-form select,
.ticket-reply-form select,
.ticket-status-form input,
.ticket-reply-form textarea {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
}

.ticket-reply-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.ticket-reply-actions .inline-label {
  flex: 1;
  min-width: 200px;
  display: grid;
  gap: 6px;
}

/* ---- Settings form ---- */
.settings-form {
  display: grid;
  gap: 18px;
}

.settings-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.settings-form label > span {
  font-size: 12.5px;
  font-weight: 800;
  color: #4b5168;
}

.settings-form .checkbox-row {
  flex-direction: row !important;
  gap: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.settings-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

/* ---- BÜYÜK AÇ/KAPAT KARTI (WhatsApp Widget master switch) ---- */
.master-toggle-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  margin-bottom: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fafbff, #fff);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.master-toggle-card.is-on {
  border-color: #25d366;
  background: linear-gradient(135deg, #effff5, #fff);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.12);
}

.master-toggle-card.is-off {
  border-color: #d6dae8;
  background: linear-gradient(135deg, #f5f6fa, #fff);
  filter: grayscale(0.1);
}

.mt-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}

.master-toggle-card.is-off .mt-icon {
  background: #c1c6d8;
  box-shadow: none;
}

.mt-text strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
  color: #1a1f3d;
}

.mt-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.master-toggle-card.is-on .mt-status {
  background: #d4f8e1;
  color: #0a6e34;
}

.master-toggle-card.is-off .mt-status {
  background: #ffe1e1;
  color: #99232f;
}

.mt-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
}

.master-toggle-card.is-on .mt-status::before {
  animation: mt-pulse 1.6s ease-out infinite;
}

@keyframes mt-pulse {
  0% { box-shadow: 0 0 0 0 rgba(10, 110, 52, 0.6); }
  100% { box-shadow: 0 0 0 9px rgba(10, 110, 52, 0); }
}

.mt-desc {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
  max-width: 480px;
}

/* iOS-style toggle switch */
.mt-switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 36px;
  cursor: pointer;
}

.mt-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.mt-switch .mt-slider {
  position: absolute;
  inset: 0;
  background: #c1c6d8;
  border-radius: 999px;
  transition: background 0.22s ease;
}

.mt-switch .mt-slider::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease;
}

.mt-switch input:checked + .mt-slider {
  background: #25d366;
}

.mt-switch input:checked + .mt-slider::before {
  transform: translateX(28px);
}

.mt-switch input:focus + .mt-slider {
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
}

@media (max-width: 720px) {
  .master-toggle-card {
    grid-template-columns: 48px 1fr;
    grid-template-areas: "icon text" "switch switch";
    padding: 14px 16px;
  }
  .master-toggle-card .mt-icon { grid-area: icon; width: 48px; height: 48px; font-size: 22px; }
  .master-toggle-card .mt-text-wrap { grid-area: text; }
  .master-toggle-card .mt-switch-wrap { grid-area: switch; justify-self: end; }
}

/* ---- Cloud API kart üst toolbar (Nasıl alırım? linkleri) ---- */
.api-help-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 8px 0 14px;
}

.api-help-toolbar .help-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef3ff;
  color: #2c3a8a;
  font-size: 12.5px;
  font-weight: 800;
  border: 1px solid #d3deff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.api-help-toolbar .help-pill:hover {
  background: #e3ebff;
  border-color: #aebfff;
  transform: translateY(-1px);
}

.api-help-toolbar .help-pill.primary {
  background: linear-gradient(135deg, #5a3ad8, #8b5dff);
  border-color: transparent;
  color: #fff;
  padding: 9px 16px;
  font-size: 13.5px;
}

.api-help-toolbar .help-pill.primary:hover {
  filter: brightness(1.05);
}

/* ---- Paket form & rows ---- */
.paket-form,
.paket-row {
  display: grid;
  gap: 14px;
}

.paket-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) {
  .paket-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .paket-grid { grid-template-columns: 1fr 1fr; }
}

.paket-grid label {
  display: grid;
  gap: 4px;
}

.paket-grid label > span {
  font-size: 11.5px;
  font-weight: 800;
  color: #4b5168;
  letter-spacing: 0.04em;
}

.paket-row {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafbff;
  margin-bottom: 14px;
}

.paket-section-form {
  margin-top: 16px;
}

.paket-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.paket-card-editor {
  min-height: 100%;
  margin-bottom: 0;
  background: #fff;
}

.paket-card-head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  border-left: 4px solid #38a6c7;
  background: #f7f9ff;
}

.paket-card-head.accent-violet,
.paket-card-head.accent-indigo { border-left-color: #7557f6; }
.paket-card-head.accent-cyan,
.paket-card-head.accent-blue { border-left-color: #38a6c7; }
.paket-card-head.accent-emerald,
.paket-card-head.accent-green { border-left-color: #32bd82; }
.paket-card-head.accent-amber,
.paket-card-head.accent-gold { border-left-color: #d88a00; }
.paket-card-head.accent-rose { border-left-color: #e25572; }

.paket-card-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(20, 31, 77, 0.08);
}

.paket-card-head strong {
  display: block;
  color: #1a1f3d;
  font-size: 16px;
}

.paket-card-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.paket-card-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.paket-row-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

/* ---- Diagnostics ---- */
.diag-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.diag-meta {
  display: grid;
  gap: 6px;
  font-size: 13.5px;
  background: #f7f9ff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.diag-meta b {
  color: #2c3247;
}

.diag-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .diag-grid { grid-template-columns: 1fr; }
}

.diag-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.diag-list li {
  border-bottom: 1px solid var(--line);
}

.diag-list li:last-child {
  border-bottom: 0;
}

.diag-list a {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: #1a1f3d;
}

.diag-list a:hover {
  background: #f5f6fa;
}

.diag-list a.active {
  background: #eef3ff;
}

.diag-list span {
  font-size: 11.5px;
  color: var(--muted);
}

.diag-content-wrap {
  display: grid;
  gap: 8px;
}

.diag-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.diag-content {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #0e1116;
  color: #d6dbe7;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 12px;
  line-height: 1.5;
  max-height: 60vh;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.diag-empty {
  padding: 16px;
  border: 1px dashed #c8cee0;
  border-radius: 12px;
  background: #f7f8fb;
  color: var(--muted);
}

/* ---- Filter bar tweaks ---- */
.filter-bar select,
.filter-bar input[type="search"] {
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
}

.filter-bar input[type="search"] {
  min-width: 240px;
}

/* ---- Hint / form helpers shared ---- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .paket-admin-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Sag alt WhatsApp destek widget'i
   ============================================================ */
.sw-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  font-family: inherit;
}

.sw-bubble {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sw-bubble:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55);
}

.sw-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 320px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(20, 31, 77, 0.25);
  overflow: hidden;
  display: none;
  flex-direction: column;
  transform-origin: bottom right;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.16s ease, opacity 0.16s ease;
  pointer-events: none;
}

/* Sadece widget AÇIK iken panel görünsün (default kapalı). */
.sw-widget.is-open .sw-panel {
  display: flex;
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Açıkken bubble'a aktif feedback */
.sw-widget.is-open .sw-bubble {
  transform: scale(0.92);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Bubble dikkat çekici nabız animasyonu (sadece kapalıyken) */
.sw-widget:not(.is-open) .sw-bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: sw-pulse 1.8s ease-out infinite;
  pointer-events: none;
}

.sw-bubble {
  position: relative;
}

@keyframes sw-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.sw-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px 12px;
  background: linear-gradient(135deg, #075e54, #128c7e);
  color: #fff;
}

.sw-title strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.sw-title span {
  font-size: 12px;
  opacity: 0.85;
}

.sw-close {
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  font-family: inherit;
}

.sw-close:hover {
  background: rgba(255, 255, 255, 0.32);
}

.sw-body {
  padding: 14px 16px;
  background: #ece5dd;
  flex: 1;
  display: grid;
  gap: 10px;
}

.sw-bubble-msg {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #1f243a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  position: relative;
}

.sw-bubble-msg::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 14px;
  border: 6px solid transparent;
  border-top-color: #fff;
}

.sw-info {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #2c3350;
  display: grid;
  gap: 4px;
}

.sw-info a {
  color: #075e54;
  font-weight: 700;
}

.sw-textarea {
  width: 100%;
  min-height: 70px;
  padding: 10px 12px;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  resize: vertical;
}

.sw-textarea:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
}

.sw-footer {
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.sw-send {
  display: block;
  text-align: center;
  padding: 11px 12px;
  border-radius: 10px;
  background: #25d366;
  color: #fff !important;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.sw-send:hover {
  background: #1ebe5a;
}

@media (max-width: 460px) {
  .sw-panel {
    right: -8px;
    width: calc(100vw - 28px);
  }
}

/* Stack widget biraz yukari, footer'la cakismasin */
.site-footer {
  padding-right: 100px;
}

@media (max-width: 720px) {
  .site-footer {
    padding-right: 28px;
  }
}
