:root {
  --bg: #0b1220;
  --card: #151f34;
  --text: #e5ecff;
  --muted: #98a9cf;
  --accent: #4f8cff;
  --danger: #ff5d7c;
}
* { box-sizing: border-box; }
html {
  background-color: var(--bg);
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #17284a, var(--bg));
  color: var(--text);
}
.auth-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(79, 140, 255, 0.28), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(95, 77, 255, 0.35), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(0, 210, 255, 0.14), transparent 40%);
  pointer-events: none;
}
.container { max-width: 980px; margin: 32px auto; padding: 0 16px; }
.auth-wrap { min-height: calc(100vh - 64px); display: grid; place-items: center; }
.card {
  background: rgba(21, 31, 52, 0.9);
  border: 1px solid #22304f;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 18px;
  backdrop-filter: blur(3px);
}
.glass { box-shadow: 0 24px 64px rgba(5, 14, 30, 0.6); border-color: rgba(101, 143, 235, 0.35); }
.narrow { max-width: 460px; margin: 40px auto; }
.form-grid { display: grid; gap: 12px; }
.install-section-label {
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted, rgba(255, 255, 255, 0.72));
}
.form-hint {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--text-muted, rgba(255, 255, 255, 0.65));
}
.form-hint code { font-size: 0.9em; }
.install-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
}
.form-grid--nested {
    padding-left: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
}
label { display: grid; gap: 6px; color: var(--muted); font-size: 14px; }
/* Giris / kurulum (koyu tema); dashboard-pro kendi kontrol stillerini kullanir */
body:not(.dashboard-pro) input,
body:not(.dashboard-pro) select,
body:not(.dashboard-pro) button {
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #2a3c62;
  background: #0f1729;
  color: var(--text);
}
body:not(.dashboard-pro) button {
  border: 0;
  background: linear-gradient(135deg, #4f8cff, #5f4dff);
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
body:not(.dashboard-pro) button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(79, 140, 255, 0.4);
}
.alert.error {
  border: 1px solid #5f2633;
  background: rgba(255, 93, 124, 0.15);
  color: #ffc4cf;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.alert.success {
  border: 1px solid #1f6d4f;
  background: rgba(22, 163, 74, 0.18);
  color: #b4ffd2;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.alert.info {
  border: 1px solid #3f5b90;
  background: rgba(59, 130, 246, 0.12);
  color: #cfe8ff;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.45;
}
.alert.info code {
  font-size: 0.88em;
}
.hidden { display: none; }
.secondary-btn {
  background: transparent;
  border: 1px solid #3f5b90;
}
.progress-card {
  border: 1px solid #2a3d67;
  border-radius: 12px;
  padding: 14px;
  margin: 8px 0 14px;
  background: rgba(10, 17, 31, 0.7);
}
.progress-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #202f4f;
  margin: 8px 0;
}
.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #42a5ff, #8a6bff);
  transition: width 0.4s ease;
}
.install-log-box {
  margin-top: 0;
  border: 1px solid rgba(90, 120, 190, 0.45);
  background: linear-gradient(165deg, rgba(6, 12, 26, 0.92), rgba(4, 8, 18, 0.88));
  border-radius: 12px;
  max-height: 240px;
  overflow: auto;
  padding: 12px 12px 10px;
  font-family: "JetBrains Mono", ui-monospace, Consolas, monospace;
  font-size: 11.5px;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.install-log-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  border-left: 3px solid rgba(125, 160, 230, 0.35);
  background: rgba(20, 32, 56, 0.35);
  color: #d8e4ff;
  white-space: pre-wrap;
}
.install-log-line__ico {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.95;
}
.install-log-line__svg {
  display: block;
}
.install-log-line--info {
  border-left-color: rgba(56, 189, 248, 0.75);
}
.install-log-line--info .install-log-line__ico {
  color: #38bdf8;
}
.install-log-line--warn {
  border-left-color: rgba(251, 191, 36, 0.85);
  background: rgba(60, 40, 10, 0.25);
}
.install-log-line--warn .install-log-line__ico {
  color: #fbbf24;
}
.install-log-line--error {
  border-left-color: rgba(248, 113, 113, 0.9);
  background: rgba(50, 20, 24, 0.35);
}
.install-log-line--error .install-log-line__ico {
  color: #f87171;
}
.install-log-line__meta {
  flex-shrink: 0;
  min-width: 2.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7b93c4;
  margin-top: 1px;
}
.install-log-line__msg {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.row { display: flex; align-items: center; gap: 12px; }
.between { justify-content: space-between; }
.log-list { display: grid; gap: 10px; }
.log-item {
  border: 1px solid #273658;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.dashboard-page {
  background: #eef1f7;
  color: #1f2a44;
}
.dashboard-page::before { display: none; }
.dashboard-wrap { max-width: 1160px; margin-top: 16px; }
.dashboard-topnav {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #2953bf, #2142a0);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #1d3d95;
}
.dashboard-topnav a {
  color: #eaf0ff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.topnav-logout { margin-left: auto; }
.topnav-logout button {
  background: #173882;
  border: 1px solid #6b89d7;
  padding: 8px 12px;
  box-shadow: none;
}
.dashboard-statusbar {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #dde2ec;
  border: 1px solid #c7cfde;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  color: #334264;
}
.dashboard-card {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #d2dae8;
  border-radius: 8px;
  padding: 12px;
}
.dashboard-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  color: #2d3c5e;
}
.dashboard-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}
.action-btn {
  background: #f4f7ff;
  color: #2d3c5e;
  border: 1px solid #c7d3eb;
  box-shadow: none;
}
.action-btn.primary { background: #2f72ff; color: #fff; border-color: #245cd0; }
.action-btn.secondary { background: #eef6ff; color: #1e3a5f; border-color: #b8cce8; }
.action-btn.danger { background: #ffefef; color: #973434; border-color: #edc4c4; }
.dashboard-inline-msg {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}
.dashboard-inline-msg.success { background: #e8f7ef; color: #1f5c3a; border: 1px solid #b8e0c8; }
.dashboard-inline-msg.error { background: #fdecec; color: #8a2424; border: 1px solid #e8b4b4; }
.dashboard-inline-msg.loading {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}
.dash-ctl-spinner {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #93c5fd;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: dash-ctl-spin 0.65s linear infinite;
}
.dash-ctl-msg-text {
  line-height: 1.4;
}
@keyframes dash-ctl-spin {
  to {
    transform: rotate(360deg);
  }
}
.apply-btn {
  margin-left: auto;
  background: #2f72ff;
  color: #fff;
  box-shadow: none;
}
.map-row { display: flex; gap: 8px; align-items: stretch; }
.map-row select,
.map-row input.dash-map-input {
  background: #f8fbff;
  color: #2d3c5e;
  border: 1px solid #cad5ea;
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
}
.dash-map-hint {
  font-size: 12px;
  color: #64748b;
  margin: 8px 0 0;
  line-height: 1.4;
}
.dash-map-hint code {
  font-size: inherit;
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 4px;
}
.players-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d3dceb;
}
.players-table th, .players-table td {
  padding: 10px;
  border-bottom: 1px solid #e4e9f3;
  font-size: 13px;
  text-align: left;
}
.players-table th {
  background: #f7f9fd;
  color: #48608f;
}
.table-empty {
  text-align: center;
  color: #6f7f9f;
  padding: 16px;
}
.stats-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.stat-box {
  border: 1px solid #d5ddeb;
  border-radius: 8px;
  padding: 12px;
  background: #fafcff;
}
.stat-box strong {
  display: block;
  font-size: 15px;
  color: #2e3f62;
}
.stat-box span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6d7f9f;
}
/* Günlük listesi — yalnızca ana sayfa dash-card--logs içinde kullanılır */
.dash-logs-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-logs-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}
.dash-logs-head__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
}
.dash-logs-head__icon svg {
  display: block;
}
.dash-logs-head__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  color: #1e3a5f;
  letter-spacing: -0.02em;
}
.dashboard-log-list {
  max-height: min(320px, 42vh);
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: #fff;
  scrollbar-gutter: stable;
}
.dashboard-log-empty {
  margin: 0;
  padding: 28px 20px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}
.dashboard-log-item {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  padding: 14px 18px;
  margin: 0;
  border: none;
  border-bottom: 1px solid #cbd5e1;
  display: grid;
  gap: 8px;
  color: #334155;
}
.dashboard-log-item:last-child {
  border-bottom: none;
}
.dashboard-log-item--panel {
  background: #fff;
}
.dashboard-log-item--provision {
  background: #fafbfc;
}
.dashboard-log-item__main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}
.dashboard-log-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  padding: 2px 8px;
  line-height: 1.2;
}
.dashboard-log-tag--muted {
  color: #64748b;
  background: #f1f5f9;
  border-color: #e2e8f0;
}
.dashboard-log-user {
  font-weight: 700;
  color: #2563eb;
}
.dashboard-log-summary {
  color: #1e293b;
  font-weight: 500;
}
.dashboard-log-detail {
  font-size: 12px;
  color: #64748b;
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  font-weight: 400;
}
.dashboard-log-time {
  margin: 0;
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
}

/* --- Profesyonel dashboard (Tailwind yok, acik tema) --- */
.dashboard-pro {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: #f3f4f6;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
}
.dashboard-pro__shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.dashboard-pro__header {
  background: #f3f4f6;
  border-bottom: none;
}
.dashboard-pro__header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dashboard-pro__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  width: fit-content;
  max-width: min(100%, 808px);
  min-width: 0;
  text-decoration: none;
  color: #111827;
}
.dashboard-pro__brand-mark {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.dashboard-pro__brand-img {
  display: block;
  width: auto;
  height: auto;
  /* Alfa kanalı korunur; ekstra beyaz zemin verilmez */
  background-color: transparent;
  background-image: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  max-height: clamp(72px, 11vh, 98px);
  max-width: min(100%, 717px);
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
}
.dashboard-pro__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.dashboard-pro__icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  cursor: pointer;
  box-shadow: none;
}
.dashboard-pro__icon-btn:hover {
  background: #f9fafb;
  transform: none;
}
.dashboard-pro__user {
  position: relative;
}
.dashboard-pro__user-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 3px 8px 3px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 0 0 1px rgba(148, 163, 184, 0.18);
  font-size: 13px;
  font-weight: 400;
  color: #334155;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.dashboard-pro__user-summary:hover {
  background: #fff;
  box-shadow:
    0 2px 10px rgba(15, 23, 42, 0.07),
    0 0 0 1px rgba(100, 116, 139, 0.28);
}
.dashboard-pro__user-summary:focus {
  outline: none;
}
.dashboard-pro__user-summary:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
.dashboard-pro__user-summary::-webkit-details-marker { display: none; }
.dashboard-pro__user-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-pro__user-avatar-svg {
  display: block;
  width: 26px;
  height: 26px;
}
.dashboard-pro__user-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  min-width: 0;
  text-align: center;
}
.dashboard-pro__user-greet {
  font-size: 10px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.2;
  letter-spacing: 0.01em;
  width: 100%;
}
.dashboard-pro__user-name {
  max-width: 180px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.dashboard-pro__user-chev {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.2s ease;
  margin-left: 1px;
}
.dashboard-pro__user-chev svg {
  display: block;
  width: 14px;
  height: 14px;
}
.dashboard-pro__user[open] .dashboard-pro__user-chev {
  transform: rotate(180deg);
  color: #64748b;
}
.dashboard-pro__user-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 148px;
  padding: 4px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  z-index: 50;
}
.dashboard-pro__user-panel form {
  margin: 0;
}
.dashboard-pro__user-panel-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 6px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #0f172a;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  box-sizing: border-box;
}
.dashboard-pro__user-panel-link:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1e293b;
}
.dashboard-pro__user-panel-link-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  line-height: 0;
}
.dashboard-pro__user-panel-link-svg {
  display: block;
  width: 18px;
  height: 18px;
}
.dashboard-pro__user-panel-link-label {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.dashboard-pro__user-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #334155;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: none;
  text-align: center;
}
.dashboard-pro__user-logout-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.dashboard-pro__user-logout-svg {
  display: block;
  width: 18px;
  height: 18px;
}
.dashboard-pro__user-logout-label {
  flex: 0 1 auto;
  min-width: 0;
  font-weight: 600;
  line-height: 1.2;
}
.dashboard-pro__user-logout:hover {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
  transform: none;
}
.dashboard-pro__container {
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px 32px;
  box-sizing: border-box;
  overflow-x: hidden;
}
.dashboard-pro__nav-wrap {
  margin-top: 16px;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(165deg, #1a3368 0%, #122042 55%, #0d1938 100%);
  border: 1px solid rgba(59, 130, 246, 0.38);
  /* Agir dis gölge kaldirildi — grimsi hale gelmesin */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.dashboard-pro__nav-primary {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 5px;
  padding: 11px 12px 13px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}
.dashboard-pro__nav-primary::-webkit-scrollbar {
  height: 6px;
}
.dashboard-pro__nav-primary::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 6px;
}
.dashboard-pro__nav-primary::-webkit-scrollbar-track {
  background: transparent;
}
@media (min-width: 768px) {
  .dashboard-pro__nav-primary {
    justify-content: center;
  }
}
.dashboard-pro__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.15s ease;
}
.dashboard-pro__nav-link svg {
  opacity: 1;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}
/* Çizgi (stroke) ikonlar — dolgu ikonlarla aynı görsel ağırlık */
.dashboard-pro__nav-link svg[fill="none"] {
  stroke-width: 2.25;
}
.dashboard-pro__nav-link:hover:not(.dashboard-pro__nav-link--disabled):not(.is-active) {
  background: rgba(59, 130, 246, 0.38);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.dashboard-pro__nav-link.is-active {
  background: linear-gradient(175deg, #3b82f6 0%, #2563eb 48%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow:
    0 4px 18px rgba(37, 99, 235, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.dashboard-pro__nav-link--disabled {
  opacity: 0.42;
  cursor: not-allowed;
}
.dashboard-pro__metrics {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 6px;
  /* Üst nav (#1a3368 ailesi) ile ayni soguk ton — cok acik / soluk yüzey (referans panel gibi) */
  background: linear-gradient(180deg, #f2f5fa 0%, #ebeef5 45%, #e6ecf4 100%);
  color: #334155;
  border: 1px solid #c5d2e3;
  border-radius: 12px;
  padding: 12px 16px 11px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(26, 51, 104, 0.06);
}
.dashboard-pro__metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
  align-items: center;
}
@media (min-width: 768px) {
  .dashboard-pro__metrics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}
.dashboard-pro__metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  flex-wrap: wrap;
}
.dashboard-pro__metric--muted {
  opacity: 0.75;
  cursor: default;
}
.dashboard-pro__metric-ico {
  opacity: 1;
  flex-shrink: 0;
  color: #4a6282;
}
.dashboard-pro__metric-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #64748b;
}
.dashboard-pro__metric-label--ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.dashboard-pro__metric-label--ico .dashboard-pro__metric-label-svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #64748b;
}
.dashboard-pro__metric-label--ico .dashboard-pro__metric-label-svg--ip {
  width: 26px;
  height: 22px;
}
.dashboard-pro__metric-label--ico .dashboard-pro__metric-label-svg--port {
  width: 24px;
  height: 22px;
}
.dashboard-pro__metric-value {
  font-weight: 700;
  color: #1a3055;
}
.dashboard-pro__metric strong {
  color: #152a47;
  font-weight: 700;
}
.dashboard-pro__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
}
.dashboard-pro__badge--on { background: #1d4ed8; }
.dashboard-pro__badge--off { background: #6b7280; }
.dashboard-pro__badge--muted { background: #9ca3af; }
.dashboard-pro__metrics-sub {
  margin: 10px 0 0;
  padding-top: 8px;
  border-top: 1px solid rgba(26, 51, 104, 0.12);
  font-size: 12px;
  font-weight: 500;
  color: #475569;
  text-align: center;
}
.dashboard-pro__metrics-sub strong { margin-right: 6px; }
.dashboard-pro__alert {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
}
.dashboard-pro__alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.dashboard-pro__alert--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.dashboard-pro__main {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dash-card {
  background: #fff;
  border: 1px solid #93c5fd;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}
.dash-card.dash-card--logs {
  margin: 0;
  padding: 0;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.dash-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.dash-section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border: 1px solid #bfdbfe;
  flex-shrink: 0;
}
.dash-section-icon svg {
  display: block;
}
.dash-section-icon--tool-update svg {
  color: #1d4ed8;
}
.dash-section-icon--tool-mm svg {
  color: #6d28d9;
}
.dash-section-icon--tool-css svg {
  color: #047857;
}
.dash-section-icon--tool-danger svg {
  color: #be123c;
}
.dash-section-icon--log svg {
  color: #7c3aed;
}
.dash-section-icon--server {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  border-color: #7dd3fc;
}
.dash-section-icon--map {
  background: linear-gradient(135deg, #e0e7ff, #eef2ff);
  border-color: #c7d2fe;
}
.dash-section-icon--users {
  background: linear-gradient(135deg, #d1fae5, #ecfdf5);
  border-color: #a7f3d0;
}
.dash-section-icon--users svg {
  color: #059669;
}
.dash-section-icon--chart {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  border-color: #fde68a;
}
.dash-section-icon--log {
  background: linear-gradient(135deg, #f3e8ff, #faf5ff);
  border-color: #e9d5ff;
}
.dash-section-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  color: #374151;
  letter-spacing: -0.02em;
}
.dash-control-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-control-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}
.dash-control-head__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
}
.dash-control-head__icon svg {
  display: block;
}
.dash-control-head__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  color: #1e3a5f;
  letter-spacing: -0.02em;
}
.dash-card--control {
  margin: 0;
  padding: 16px 20px 18px;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.dash-map-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-map-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}
.dash-map-head__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
}
.dash-map-head__icon svg {
  display: block;
}
.dash-map-head__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  color: #1e3a5f;
  letter-spacing: -0.02em;
}
.dash-card--map {
  margin: 0;
  padding: 16px 20px 18px;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.dash-map-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #64748b;
}
.dashboard-pro .dash-card--map .dash-map-info,
.dashboard-pro .dash-card--control .dash-map-info,
.dashboard-pro .dash-card--live-players .dash-map-info {
  margin-top: 14px;
}
.dash-map-info__glyph {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}
.dash-map-info__glyph svg {
  display: block;
}
.dash-map-info__text {
  flex: 1;
  min-width: 0;
}

/* datalist ile gelen ok / takvim göstergesini gizle */
.dashboard-pro .dash-map-input::-webkit-calendar-picker-indicator,
.dashboard-pro .dash-map-input::-webkit-list-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0;
  margin: 0;
  padding: 0;
}
.dashboard-pro .dash-map-input {
  appearance: textfield;
  -moz-appearance: textfield;
}
.dashboard-pro #dash-map-input[list]::-webkit-calendar-picker-indicator {
  display: none !important;
}

/* Harita onay penceresi üst bölüm */
.dash-map-confirm__hero {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
}
.dash-map-confirm__icon svg {
  display: block;
}
.dash-map-confirm__head-text {
  flex: 1;
  min-width: 0;
}
.dash-map-confirm__title {
  margin-bottom: 0;
}
.dash-map-confirm__lead {
  margin: 0;
  color: #4b5563;
}
.dash-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.dashboard-pro .players-table {
  border: none;
}
.dashboard-pro .players-table th {
  background: #f9fafb;
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dashboard-pro .dash-player-namecell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
}
.dashboard-pro .dash-player-avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(107, 114, 128, 0.2);
}
.dashboard-pro .dash-player-avatar--placeholder {
  display: inline-block;
  min-width: 28px;
  min-height: 28px;
  border-radius: 6px;
  background: rgba(107, 114, 128, 0.25);
}
.dashboard-pro .dash-player-nick {
  min-width: 0;
  word-break: break-word;
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.dash-live-players-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-live-players-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}
.dash-live-players-head__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
}
.dash-live-players-head__icon svg {
  display: block;
}
.dash-live-players-head__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  color: #1e3a5f;
  letter-spacing: -0.02em;
}

/* Genel bakış — başlık kutunun dışında; istatistik kutularında SVG */
.dash-overview-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-overview-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}
.dash-overview-head__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
}
.dash-overview-head__icon svg {
  display: block;
}
.dash-overview-head__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  color: #1e3a5f;
  letter-spacing: -0.02em;
}
.dashboard-pro .dash-card--overview {
  margin: 0;
  padding: 16px 20px 18px;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  border-radius: 12px;
}
.dashboard-pro .stats-grid--overview {
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
}
.dashboard-pro .stat-box--overview {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px 14px 14px 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.dashboard-pro .stat-box--overview:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.dashboard-pro .stat-box__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}
.dashboard-pro .stat-box__icon-wrap svg {
  display: block;
}
.dashboard-pro .stat-box__svg--ip {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.dashboard-pro .stat-box__icon-wrap--server,
.dashboard-pro .stat-box__icon-wrap--ip {
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff 0%, #f8fafc 100%);
}
.dashboard-pro .stat-box__icon-wrap--disk {
  color: #4f46e5;
  background: linear-gradient(145deg, #eef2ff 0%, #f8fafc 100%);
}
.dashboard-pro .stat-box__icon-wrap--map {
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff 0%, #f1f5f9 100%);
}
.dashboard-pro .stat-box__icon-wrap--state {
  color: #059669;
  background: linear-gradient(145deg, #ecfdf5 0%, #f8fafc 100%);
}
.dashboard-pro .stat-box__icon-wrap--players {
  color: #0d9488;
  background: linear-gradient(145deg, #f0fdfa 0%, #f8fafc 100%);
}
.dashboard-pro .stat-box__body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dashboard-pro .stat-box--overview .stat-box__body strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #111827;
  word-break: break-word;
}
.dashboard-pro .stat-box--overview .stat-box__body span {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  font-weight: 500;
  color: #1e3a5f;
  letter-spacing: -0.02em;
}

.dashboard-pro .dash-card--live-players {
  margin: 0;
  padding: 16px 20px 18px;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  border-radius: 12px;
}

.dashboard-pro .dash-players-table-wrap {
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  background: #ffffff;
}

.dashboard-pro .dash-players-loading {
  text-align: center;
  padding: 0 !important;
  border-bottom: none !important;
}
.dashboard-pro .dash-players-loading__center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 132px;
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.dashboard-pro .dash-players-loading__text {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  letter-spacing: -0.01em;
}
.dashboard-pro .dash-players-empty-msg {
  text-align: center;
  padding: 2.25rem 1.25rem !important;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  border-bottom: none !important;
  background: #fafafa;
}
.dashboard-pro .dash-players-empty-msg--muted {
  color: #64748b;
  font-weight: 400;
  line-height: 1.5;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.dashboard-pro .dash-players-table tbody td.dash-players-empty-msg--waiting {
  text-align: center;
  vertical-align: middle;
}
.dashboard-pro .dash-players-empty-msg--waiting {
  padding: 2.1rem 1.25rem !important;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 45%, #fafafa 100%) !important;
  border-bottom: none !important;
}
.dashboard-pro .dash-players-empty-msg__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
/* Boş sunucu: emoji yerine kontrol / harita temasına uyumlu dönen halka */
.dashboard-pro .dash-players-wait-spinner {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 3px solid #e2e8f0;
  border-top-color: #2563eb;
  border-right-color: #93c5fd;
  animation: dash-players-wait-spin 0.88s linear infinite;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
@keyframes dash-players-wait-spin {
  to {
    transform: rotate(360deg);
  }
}
.dashboard-pro .dash-players-empty-msg__lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
  text-align: center;
}
.dashboard-pro .dash-players-empty-msg__line1,
.dashboard-pro .dash-players-empty-msg__line2 {
  display: block;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.dashboard-pro .dash-players-empty-msg__line1 {
  color: #334155;
  font-weight: 600;
}
.dashboard-pro .dash-players-empty-msg__line2 {
  color: #64748b;
  font-weight: 500;
  font-size: 13px;
}
.dashboard-pro .dash-players-state-row:hover {
  background: transparent !important;
}
.dashboard-pro .dash-players-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
.dashboard-pro .dash-players-table thead th {
  padding: 12px 14px;
  border-bottom: 2px solid #e5e7eb;
  white-space: nowrap;
  color: #64748b;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dashboard-pro .dash-players-table tbody td {
  padding: 12px 14px;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
  color: #000000;
  font-weight: 400;
}
.dashboard-pro .dash-players-table tbody tr {
  transition: background 0.12s ease;
}
.dashboard-pro .dash-players-table tbody tr:hover {
  background: rgba(239, 246, 255, 0.85);
}
.dashboard-pro .dash-players-table tbody tr:nth-child(even) {
  background: rgba(249, 250, 251, 0.65);
}
.dashboard-pro .dash-players-table tbody tr:nth-child(even):hover {
  background: rgba(239, 246, 255, 0.9);
}

.dashboard-pro .dash-steam-badge {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #000000;
  max-width: min(22rem, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.dashboard-pro .dash-ip-text {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.01em;
}

.dashboard-pro .dash-players-table tbody td.dash-player-stat {
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.dashboard-pro .dash-ip-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dashboard-pro .dash-ip-pill--bot {
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  color: #64748b;
  border: 1px solid #cbd5e1;
}

.dashboard-pro .dash-player-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 7rem;
  position: relative;
  z-index: 2;
}
.dashboard-pro .dash-action-btn {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease,
    background 0.1s ease;
}
.dashboard-pro .dash-action-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}
.dashboard-pro .dash-action-btn--kick {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-color: #15803d;
  color: #fff;
  box-shadow: 0 1px 3px rgba(22, 163, 74, 0.35);
}
.dashboard-pro .dash-action-btn--kick:hover:not(:disabled) {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.4);
}
.dashboard-pro .dash-action-btn--ban {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-color: #b91c1c;
  color: #fff;
  box-shadow: 0 1px 3px rgba(220, 38, 38, 0.4);
}
.dashboard-pro .dash-action-btn--ban:hover:not(:disabled) {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
}
.dashboard-pro .dash-action-na {
  color: #9ca3af;
  font-size: 13px;
}

.dashboard-pro .dash-player-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.dashboard-pro .dash-player-avatar--placeholder {
  min-width: 32px;
  min-height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  background: linear-gradient(145deg, #e2e8f0, #f1f5f9);
  border: 1px solid #cbd5e1;
}

.dashboard-pro .stat-box {
  background: #f9fafb;
  border-color: #e5e7eb;
}
.dashboard-pro .stat-box strong {
  color: #111827;
}
.dashboard-pro .dashboard-controls {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.dashboard-pro .action-btn {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #374151;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.dashboard-pro .action-btn--with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.dashboard-pro .action-btn__ico {
  flex-shrink: 0;
}
.dashboard-pro .action-btn__ico--stroke {
  stroke: currentColor;
}
.dashboard-pro .action-btn:hover {
  transform: translateY(-1px);
  background: #f9fafb;
}
.dashboard-pro .action-btn.primary {
  background: #2563eb;
  border-color: #1d4ed8;
  color: #fff;
}
.dashboard-pro .action-btn.primary:hover {
  background: #1d4ed8;
}
.dashboard-pro .action-btn.action-btn--stop {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}
.dashboard-pro .action-btn.action-btn--stop:hover:not(:disabled) {
  background: #dbeafe;
  border-color: #93c5fd;
}
.dashboard-pro .action-btn.danger {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #9f1239;
}
.dashboard-pro .action-btn.danger:hover:not(:disabled) {
  background: #ffe4e6;
}
.dashboard-pro .apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  background: #2563eb;
  border: 1px solid #1d4ed8;
  color: #fff;
  margin-left: auto;
  box-shadow: 0 2px 0 #1e40af, 0 3px 8px rgba(37, 99, 235, 0.25);
}
.dashboard-pro .apply-btn:hover:not(:disabled) {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.dashboard-pro .apply-btn:disabled,
.dashboard-pro .action-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.dashboard-pro .map-row select,
.dashboard-pro .map-row input.dash-map-input {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  min-height: 42px;
  box-sizing: border-box;
}
.dashboard-pro .dashboard-inline-msg.success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #166534;
}
.dashboard-pro .dashboard-inline-msg.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.dashboard-pro .dashboard-inline-msg.loading {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

@keyframes dash-notice-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dashboard-pro__main.system-page .dash-notice:not(.hidden) {
  display: block;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  animation: dash-notice-in 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.dashboard-pro__main.system-page .dash-notice .dash-notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(155deg, #ffffff 0%, #f8fafc 55%, #fafafa 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 10px 36px rgba(15, 23, 42, 0.07);
}
.dashboard-pro__main.system-page .dash-notice.dash-notice--success .dash-notice__inner {
  border-color: rgba(52, 211, 153, 0.45);
  background: linear-gradient(155deg, #ecfdf5 0%, #f0fdf4 45%, #ffffff 100%);
}
.dashboard-pro__main.system-page .dash-notice.dash-notice--error .dash-notice__inner {
  border-color: rgba(248, 113, 113, 0.45);
  background: linear-gradient(155deg, #fef2f2 0%, #fffbfb 50%, #ffffff 100%);
}
.dashboard-pro__main.system-page .dash-notice.dash-notice--loading .dash-notice__inner {
  border-color: #bfdbfe;
  background: linear-gradient(155deg, #eff6ff 0%, #f8fafc 100%);
}
.dashboard-pro__main.system-page .dash-notice .dash-notice__ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 0;
  line-height: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  color: #0f172a;
}
.dashboard-pro__main.system-page .dash-notice.dash-notice--success .dash-notice__ico {
  background: linear-gradient(145deg, rgba(220, 252, 231, 0.95) 0%, rgba(187, 247, 208, 0.75) 100%);
  color: #15803d;
}
.dashboard-pro__main.system-page .dash-notice.dash-notice--error .dash-notice__ico {
  background: linear-gradient(145deg, rgba(254, 226, 226, 0.95) 0%, rgba(254, 202, 202, 0.7) 100%);
  color: #b91c1c;
}
.dashboard-pro__main.system-page .dash-notice.dash-notice--loading .dash-notice__ico {
  background: rgba(219, 234, 254, 0.9);
  color: #1d4ed8;
}
.dashboard-pro__main.system-page .dash-notice .dash-notice__svg {
  display: block;
}
.dashboard-pro__main.system-page .dash-notice__spinner {
  display: block;
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(147, 197, 253, 0.55);
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: dash-notice-spin 0.65s linear infinite;
}
@keyframes dash-notice-spin {
  to {
    transform: rotate(360deg);
  }
}
.dashboard-pro__main.system-page .dash-notice .dash-notice__body {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  padding-top: 0;
  text-align: center;
}
.dashboard-pro__main.system-page .dash-notice .dash-notice__text {
  display: block;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: #0f172a;
  text-align: center;
}
.dashboard-pro__main.system-page .dash-notice.dash-notice--success .dash-notice__text {
  color: #14532d;
}
.dashboard-pro__main.system-page .dash-notice.dash-notice--error .dash-notice__text {
  color: #7f1d1d;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.dashboard-pro__main.system-page .dash-notice.dash-notice--loading .dash-notice__text {
  color: #1e3a8a;
  font-weight: 500;
}
@media (prefers-reduced-motion: reduce) {
  .dashboard-pro__main.system-page .dash-notice:not(.hidden) {
    animation: none;
  }
  .dashboard-pro__main.system-page .dash-notice__spinner {
    animation: none;
  }
}

.dashboard-pro #plugins-inline-msg.dashboard-inline-msg:not(.hidden) {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.dashboard-pro #plugins-inline-msg.dashboard-inline-msg.success.plugins-inline-msg--restart {
  padding-left: 15px;
  box-shadow: inset 4px 0 0 #f59e0b;
}

.dashboard-pro .plugins-scan-hint:not(.hidden) {
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.plugins-fs-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #4338ca;
  flex-shrink: 0;
  vertical-align: middle;
}
.plugins-cell-name .plugins-fs-badge {
  align-self: center;
}
.plugins-fs-muted {
  display: inline-block;
  color: #94a3b8;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: help;
}
.dashboard-pro .plugins-table tbody tr.plugins-row--filesystem td {
  background: rgba(238, 242, 255, 0.35);
}

/* Kontrol / Harita / Canlı oyuncular / Genel ayarlar / AdminPlus Discord: mesaj kutusu (ikon + metin) */
.dashboard-pro #dashboard-control-message.dashboard-feedback.hidden,
.dashboard-pro #dash-map-message.dashboard-feedback.hidden,
.dashboard-pro #dash-live-players-message.dashboard-feedback.hidden,
.dashboard-pro #adm-inline-msg.dashboard-feedback.hidden,
.dashboard-pro #general-inline-msg.dashboard-feedback.hidden,
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback.hidden {
  display: none;
}
.dashboard-pro #dashboard-control-message.dashboard-feedback:not(.hidden),
.dashboard-pro #dash-map-message.dashboard-feedback:not(.hidden),
.dashboard-pro #dash-live-players-message.dashboard-feedback:not(.hidden),
.dashboard-pro #adm-inline-msg.dashboard-feedback:not(.hidden),
.dashboard-pro #general-inline-msg.dashboard-feedback:not(.hidden),
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback:not(.hidden) {
  display: block;
}
.dashboard-pro #dashboard-control-message.dashboard-feedback.success,
.dashboard-pro #dashboard-control-message.dashboard-feedback.error,
.dashboard-pro #dashboard-control-message.dashboard-feedback.loading,
.dashboard-pro #dash-map-message.dashboard-feedback.success,
.dashboard-pro #dash-map-message.dashboard-feedback.error,
.dashboard-pro #dash-map-message.dashboard-feedback.loading,
.dashboard-pro #dash-live-players-message.dashboard-feedback.success,
.dashboard-pro #dash-live-players-message.dashboard-feedback.error,
.dashboard-pro #dash-live-players-message.dashboard-feedback.loading,
.dashboard-pro #adm-inline-msg.dashboard-feedback.success,
.dashboard-pro #adm-inline-msg.dashboard-feedback.error,
.dashboard-pro #adm-inline-msg.dashboard-feedback.loading,
.dashboard-pro #general-inline-msg.dashboard-feedback.success,
.dashboard-pro #general-inline-msg.dashboard-feedback.error,
.dashboard-pro #general-inline-msg.dashboard-feedback.loading,
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback.success,
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback.error,
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback.loading {
  margin: 0 0 14px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.dashboard-pro #dashboard-control-message .dashboard-feedback__inner,
.dashboard-pro #dash-map-message .dashboard-feedback__inner,
.dashboard-pro #dash-live-players-message .dashboard-feedback__inner,
.dashboard-pro #adm-inline-msg .dashboard-feedback__inner,
.dashboard-pro #general-inline-msg .dashboard-feedback__inner,
.dashboard-pro #adminplus-discord-feedback .dashboard-feedback__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}
.dashboard-pro #adminplus-discord-feedback .dashboard-feedback__inner {
  align-items: flex-start;
}
.dashboard-pro #dashboard-control-message.dashboard-feedback--success .dashboard-feedback__inner,
.dashboard-pro #dash-map-message.dashboard-feedback--success .dashboard-feedback__inner,
.dashboard-pro #dash-live-players-message.dashboard-feedback--success .dashboard-feedback__inner,
.dashboard-pro #adm-inline-msg.dashboard-feedback--success .dashboard-feedback__inner,
.dashboard-pro #general-inline-msg.dashboard-feedback--success .dashboard-feedback__inner,
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback--success .dashboard-feedback__inner {
  border-color: #86efac;
  background: linear-gradient(145deg, #ecfdf5 0%, #f0fdf4 55%, #ffffff 100%);
}
.dashboard-pro #dashboard-control-message.dashboard-feedback--error .dashboard-feedback__inner,
.dashboard-pro #dash-map-message.dashboard-feedback--error .dashboard-feedback__inner,
.dashboard-pro #dash-live-players-message.dashboard-feedback--error .dashboard-feedback__inner,
.dashboard-pro #adm-inline-msg.dashboard-feedback--error .dashboard-feedback__inner,
.dashboard-pro #general-inline-msg.dashboard-feedback--error .dashboard-feedback__inner,
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback--error .dashboard-feedback__inner {
  border-color: #fecaca;
  background: linear-gradient(145deg, #fef2f2 0%, #fff7f7 55%, #ffffff 100%);
}
.dashboard-pro #dashboard-control-message.dashboard-feedback--loading .dashboard-feedback__inner,
.dashboard-pro #dash-map-message.dashboard-feedback--loading .dashboard-feedback__inner,
.dashboard-pro #dash-live-players-message.dashboard-feedback--loading .dashboard-feedback__inner,
.dashboard-pro #adm-inline-msg.dashboard-feedback--loading .dashboard-feedback__inner,
.dashboard-pro #general-inline-msg.dashboard-feedback--loading .dashboard-feedback__inner,
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback--loading .dashboard-feedback__inner {
  border-color: #bfdbfe;
  background: linear-gradient(145deg, #eff6ff 0%, #f8fafc 100%);
}
.dashboard-pro #dashboard-control-message .dashboard-feedback__glyph,
.dashboard-pro #dash-map-message .dashboard-feedback__glyph,
.dashboard-pro #dash-live-players-message .dashboard-feedback__glyph,
.dashboard-pro #adm-inline-msg .dashboard-feedback__glyph,
.dashboard-pro #general-inline-msg .dashboard-feedback__glyph,
.dashboard-pro #adminplus-discord-feedback .dashboard-feedback__glyph {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}
.dashboard-pro #dashboard-control-message .dashboard-feedback__glyph--pending,
.dashboard-pro #dash-map-message .dashboard-feedback__glyph--pending,
.dashboard-pro #dash-live-players-message .dashboard-feedback__glyph--pending,
.dashboard-pro #adm-inline-msg .dashboard-feedback__glyph--pending,
.dashboard-pro #general-inline-msg .dashboard-feedback__glyph--pending,
.dashboard-pro #adminplus-discord-feedback .dashboard-feedback__glyph--pending {
  background: rgba(219, 234, 254, 0.85);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}
.dashboard-pro #dashboard-control-message .dashboard-feedback__svg,
.dashboard-pro #dash-map-message .dashboard-feedback__svg,
.dashboard-pro #dash-live-players-message .dashboard-feedback__svg,
.dashboard-pro #adm-inline-msg .dashboard-feedback__svg,
.dashboard-pro #general-inline-msg .dashboard-feedback__svg,
.dashboard-pro #adminplus-discord-feedback .dashboard-feedback__svg {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.12));
}
.dashboard-pro #dashboard-control-message .dashboard-feedback__text,
.dashboard-pro #dash-map-message .dashboard-feedback__text,
.dashboard-pro #dash-live-players-message .dashboard-feedback__text,
.dashboard-pro #adm-inline-msg .dashboard-feedback__text,
.dashboard-pro #general-inline-msg .dashboard-feedback__text,
.dashboard-pro #adminplus-discord-feedback .dashboard-feedback__text {
  margin: 0;
  flex: 1;
  min-width: 0;
  align-self: center;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.dashboard-pro #dashboard-control-message.dashboard-feedback--success .dashboard-feedback__text,
.dashboard-pro #dash-map-message.dashboard-feedback--success .dashboard-feedback__text,
.dashboard-pro #dash-live-players-message.dashboard-feedback--success .dashboard-feedback__text,
.dashboard-pro #adm-inline-msg.dashboard-feedback--success .dashboard-feedback__text,
.dashboard-pro #general-inline-msg.dashboard-feedback--success .dashboard-feedback__text,
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback--success .dashboard-feedback__text {
  color: #14532d;
}
.dashboard-pro #dashboard-control-message.dashboard-feedback--error .dashboard-feedback__text,
.dashboard-pro #dash-map-message.dashboard-feedback--error .dashboard-feedback__text,
.dashboard-pro #dash-live-players-message.dashboard-feedback--error .dashboard-feedback__text,
.dashboard-pro #adm-inline-msg.dashboard-feedback--error .dashboard-feedback__text,
.dashboard-pro #general-inline-msg.dashboard-feedback--error .dashboard-feedback__text,
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback--error .dashboard-feedback__text {
  color: #7f1d1d;
}
.dashboard-pro #dashboard-control-message.dashboard-feedback--loading .dashboard-feedback__text,
.dashboard-pro #dash-map-message.dashboard-feedback--loading .dashboard-feedback__text,
.dashboard-pro #dash-live-players-message.dashboard-feedback--loading .dashboard-feedback__text,
.dashboard-pro #adm-inline-msg.dashboard-feedback--loading .dashboard-feedback__text,
.dashboard-pro #general-inline-msg.dashboard-feedback--loading .dashboard-feedback__text,
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback--loading .dashboard-feedback__text {
  color: #1e3a8a;
  font-weight: 600;
}
.dashboard-pro #dashboard-control-message .dash-ctl-spinner,
.dashboard-pro #dash-map-message .dash-ctl-spinner,
.dashboard-pro #dash-live-players-message .dash-ctl-spinner,
.dashboard-pro #adm-inline-msg .dash-ctl-spinner,
.dashboard-pro #general-inline-msg .dash-ctl-spinner,
.dashboard-pro #adminplus-discord-feedback .dash-ctl-spinner {
  width: 22px;
  height: 22px;
  border-width: 2.5px;
}
.dashboard-pro #adm-inline-msg .dashboard-feedback__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-pro #adm-inline-msg .dashboard-feedback__body .dashboard-feedback__text {
  flex: 0 1 auto;
  align-self: stretch;
}
.dashboard-pro #general-inline-msg .dashboard-feedback__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-pro #general-inline-msg .dashboard-feedback__body .dashboard-feedback__text {
  flex: 0 1 auto;
  align-self: stretch;
}
.dashboard-pro #adminplus-discord-feedback .dashboard-feedback__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-pro #adminplus-discord-feedback .dashboard-feedback__body .dashboard-feedback__text {
  flex: 0 1 auto;
  align-self: stretch;
}
.dashboard-pro #adminplus-discord-feedback .dashboard-feedback__sub {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #15803d;
}
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback--success .dashboard-feedback__sub {
  color: #15803d;
}
.dashboard-pro #adminplus-discord-feedback.dashboard-feedback--error .dashboard-feedback__sub {
  color: #991b1b;
}

.dashboard-pro .dash-card--danger-zone {
  border-color: #fecaca;
  background: #fffafa;
}

/* Sistem sayfası */
.dashboard-pro__main.system-page {
  gap: 22px;
}
.system-page__intro {
  gap: 12px;
}
.system-page__head-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4338ca;
}
.system-page__head-ico svg {
  display: block;
}
.system-page__head-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.system-page__hero-note {
  margin: 0;
}
.system-page__progress-hint {
  margin: 0 0 14px;
}

/* İşlem durumu — ikon + adım metni (Steam / Metamod / CSS / temiz kurulum) */
#system-progress-card .system-step-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 16px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(99, 102, 241, 0.14);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 42%, #f1f5ff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 10px 36px rgba(15, 23, 42, 0.06);
}
#system-progress-card .system-step-banner__content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  flex-wrap: wrap;
}
#system-progress-card .system-step-banner__ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
  color: #4f46e5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 1px 2px rgba(79, 70, 229, 0.12);
  transform: rotate(-10deg);
}
#system-progress-card .system-step-banner__ico-svg {
  display: block;
  transform: translateY(0.5px);
}
#system-progress-card .system-step-banner__sub {
  margin: 6px 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #64748b;
  font-weight: 500;
}
#system-progress-card .system-step-banner__sub.system-step-banner__sub--warn {
  color: #b45309;
}
#system-progress-card .system-step-banner__text {
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(100%, 40rem);
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.45;
  color: #1e293b;
  text-align: left;
}
@media (prefers-reduced-motion: reduce) {
  #system-progress-card .system-step-banner__ico {
    transform: none;
  }
}
#system-progress-card .system-progress-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}
#system-progress-card .system-progress-bar {
  margin: 0;
}
#system-progress-card #system-progress-fill {
  width: 0%;
}
@keyframes system-progress-working {
  0%,
  100% {
    opacity: 0.88;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.12);
  }
}
#system-progress-card .system-progress-bar.system-progress-bar--working span#system-progress-fill {
  animation: system-progress-working 1.75s ease-in-out infinite;
}
#system-progress-card .system-progress-bar span {
  background: linear-gradient(90deg, #6366f1, #8b5cf6 55%, #22d3ee);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
#system-progress-card .system-progress-pct {
  align-self: flex-end;
  font-size: 0.9375rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #475569;
}

/* Sistem: araç kartları ızgarası */
.system-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 880px) {
  .system-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
.dash-card--tool {
  padding: 18px 20px;
  border-width: 1px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.dash-card--tool:hover {
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.09);
}
.dash-card--tool-update {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.dash-card--tool-mm {
  border-color: #c4b5fd;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}
.dash-card--tool-css {
  border-color: #6ee7b7;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}
.dash-card--tool-danger.dash-card--danger-zone {
  border-color: #fca5a5;
  background: linear-gradient(180deg, #fffefe 0%, #fff1f2 100%);
}
.dash-card-tool__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media (min-width: 520px) {
  .dash-card-tool__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}
.dash-card-tool__head {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}
.dash-card-tool__head .dash-section-title {
  font-size: 1.15rem;
}
.dash-card-tool__hint {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.35;
}
.dash-card-tool__hint code {
  font-size: 12px;
  background: rgba(15, 23, 42, 0.06);
  padding: 2px 6px;
  border-radius: 6px;
}
.dash-card-tool__hint--danger {
  color: #b91c1c;
  font-weight: 650;
}

/* Temiz kurulum kartı — sade, zarif uyarı */
.dashboard-pro .system-clean-install-card.dash-card--tool-danger {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(165deg, #ffffff 0%, #fafbfc 40%, #fefefe 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.dashboard-pro .system-clean-install-card.dash-card--tool:hover {
  border-color: rgba(148, 163, 184, 0.45);
  box-shadow:
    0 12px 40px rgba(15, 23, 42, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}
.system-clean-install-card__head {
  align-items: flex-start;
}
.system-clean-install-card__ico.dash-section-icon--tool-danger {
  background: linear-gradient(155deg, #ffffff 0%, #fdf4f6 100%);
  border-color: rgba(251, 113, 133, 0.35);
  color: #be123c;
  box-shadow: 0 1px 2px rgba(190, 24, 93, 0.06);
}
.system-clean-install-card__title {
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  color: #0f172a;
}
.dashboard-pro .system-clean-install-card .system-clean-install-card__btn.action-btn.danger {
  background: #ffffff;
  border: 1px solid rgba(225, 29, 72, 0.38);
  color: #be123c;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 2px rgba(190, 24, 93, 0.06);
}
.dashboard-pro .system-clean-install-card .system-clean-install-card__btn.action-btn.danger:hover:not(:disabled) {
  background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%);
  border-color: rgba(225, 29, 72, 0.48);
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.12);
}
.dash-card-tool__btn {
  flex-shrink: 0;
  align-self: flex-start;
}
@media (min-width: 520px) {
  .dash-card-tool__btn {
    align-self: center;
  }
}
.dash-section-icon--tool-update {
  background: linear-gradient(135deg, #bfdbfe, #dbeafe);
  border-color: #93c5fd;
}
.dash-section-icon--tool-mm {
  background: linear-gradient(135deg, #ddd6fe, #ede9fe);
  border-color: #c4b5fd;
}
.dash-section-icon--tool-css {
  background: linear-gradient(135deg, #a7f3d0, #d1fae5);
  border-color: #6ee7b7;
}
.dash-section-icon--tool-danger {
  background: linear-gradient(135deg, #fecdd3, #ffe4e6);
  border-color: #fda4af;
}

/* Admin / sistem modalları — dash kartları üzerinde kalmalı */
#adm-modal-admin,
#adm-modal-group,
#adm-modal-tag {
  z-index: 10060;
}

.system-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.system-modal.hidden {
  display: none;
}
.system-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.system-modal__panel {
  position: relative;
  max-width: 520px;
  width: 100%;
  max-height: min(90vh, 640px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e5e7eb;
  padding: 24px 26px 22px;
}
.system-modal__panel--css {
  border-color: #93c5fd;
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.18);
}
.system-modal__panel--mm {
  border-color: #c4b5fd;
  box-shadow: 0 25px 50px -12px rgba(109, 40, 217, 0.14);
}
.system-modal__panel--danger {
  border-color: #fecaca;
  box-shadow: 0 25px 50px -12px rgba(185, 28, 28, 0.12);
}
.system-modal__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}
.system-modal__eyebrow--danger {
  color: #b91c1c;
}
.system-modal__eyebrow--mm {
  color: #6d28d9;
}
.system-modal__title {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #991b1b;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.system-modal__title--css {
  color: #1e3a8a;
}
.system-modal__title--mm {
  color: #5b21b6;
}
.system-modal__callout {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.system-modal__callout--prereq {
  background: #fffbeb;
  border-color: #fde68a;
  color: #78350f;
}
.system-modal__callout--prereq strong {
  color: #92400e;
}
.system-modal__lead--emph {
  font-size: 15px;
}
.system-modal__note {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.45;
}
.system-modal__note--info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
}
.system-modal__note--mm {
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  color: #4c1d95;
}
.system-modal__body {
  font-size: 14px;
  color: #374151;
  line-height: 1.55;
}
.system-modal__lead {
  margin: 0 0 12px;
}
.system-modal__list {
  margin: 0 0 14px;
  padding-left: 1.2rem;
}
.system-modal__list li {
  margin-bottom: 8px;
}
.system-modal__warn {
  margin: 0;
  padding: 10px 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  font-size: 13px;
  color: #7f1d1d;
}
.system-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

/* Kontrol: yıkıcı işlem onay penceresi */
#dash-control-confirm-modal {
  z-index: 1010;
}

/* Panel genel onay (adminler, eklentiler, kullanıcılar, …) — üst katman */
#panel-confirm-modal {
  z-index: 10200;
}
.dash-control-confirm__hero {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 4px;
}
.dash-control-confirm__icon svg {
  display: block;
  flex-shrink: 0;
}
.dash-control-confirm__head-text {
  flex: 1;
  min-width: 0;
}
.dash-control-confirm__title {
  margin-bottom: 0;
}
.dash-control-confirm__lead {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

/* Canlı oyuncular: At / Yasak onayı */
#dash-player-confirm-modal {
  z-index: 1015;
}
.dash-player-confirm__hero {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
}
.dash-player-confirm__icon svg {
  display: block;
  flex-shrink: 0;
}
.dash-player-confirm__head-text {
  flex: 1;
  min-width: 0;
}
.dash-player-confirm__title {
  margin-bottom: 0;
}
.dash-player-confirm__lead {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}
.dash-player-confirm__reason-wrap {
  margin-top: 14px;
}
.dash-player-confirm__reason-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 6px;
}
.dash-player-confirm__reason-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  line-height: 1.45;
  resize: vertical;
  min-height: 72px;
  font-family: inherit;
  background: #fafafa;
  color: #1e293b;
}
.dash-player-confirm__reason-input:focus {
  outline: none;
  border-color: #93c5fd;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Geçici aksilik (RCON / ağ) — teknik detay göstermeden */
#dash-transient-issue-modal {
  z-index: 1025;
}
.dash-transient-issue__hero {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
}
.dash-transient-issue__icon svg {
  display: block;
  flex-shrink: 0;
}
.dash-transient-issue__head-text {
  flex: 1;
  min-width: 0;
}
.dash-transient-issue__lead {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .dashboard-pro__nav-toggle {
    display: inline-flex;
  }
  .dashboard-pro__nav-primary {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 12px;
    overflow-x: visible;
  }
  .dashboard-pro__nav-primary.is-open {
    display: flex;
  }
  .dashboard-pro__nav-link {
    width: 100%;
    border-radius: 8px;
  }
}
@media (min-width: 768px) {
  .dashboard-pro__nav-toggle {
    display: none;
  }
}

a.dashboard-pro__metric--as-link {
  color: #1a3055;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 8px;
  margin: -4px -8px;
}
a.dashboard-pro__metric--as-link:hover {
  background: rgba(59, 130, 246, 0.14);
  text-decoration: none;
  color: #0f1f38;
}

/* Konsol — ana sayfa Kontrol / Harita blok düzeni */
.dash-console-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-console-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}
.dash-console-head__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
}
.dash-console-head__icon svg {
  display: block;
}
.dash-console-head__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  color: #1e3a5f;
  letter-spacing: -0.02em;
}
.dashboard-pro .dash-card.dash-card--console,
.dashboard-pro .dash-card.dash-card--general {
  margin: 0;
  padding: 16px 20px 18px;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.dashboard-pro .dash-card--console .dash-map-info,
.dashboard-pro .dash-card--general .dash-map-info {
  margin-top: 14px;
}
.dashboard-pro .general-page__intro-card .dash-map-info {
  margin-top: 0;
}
.dash-map-info__code {
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 6px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-family: ui-monospace, Consolas, "Cascadia Code", monospace;
}
.general-page__intro-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 0 2px;
}
.general-page__intro-head-row .dash-console-head {
  flex: 1 1 auto;
  min-width: min(100%, 220px);
}
.general-page__intro-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 960px) {
  .general-page__grid > .general-page__cfg-wrap {
    align-self: stretch;
    min-height: 0;
  }
}

/* Genel — AdminPlus Discord (sağ sütun, CFG altı) */
.general-page__discord-nested {
  margin-top: 0;
}
.general-page__discord-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 0 2px;
}
.general-page__discord-head-row .dash-console-head {
  flex: 1 1 auto;
  min-width: min(100%, 220px);
}
.general-page__discord-card .dash-map-info {
  margin-top: 14px;
}
.general-page__discord-grid {
  display: grid;
  gap: 14px 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .general-page__discord-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .general-page__discord-field--wide {
    grid-column: 1 / -1;
  }
}
.general-page__discord-feedback.dashboard-inline-msg:not(.hidden) {
  margin-top: 8px;
  margin-bottom: 0;
}

.dash-console-log {
  margin: 0;
  padding: 16px;
  min-height: 220px;
  max-height: 420px;
  overflow: auto;
  background: #111827;
  color: #e5e7eb;
  border-radius: 12px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid #374151;
}
.dash-console-rcon {
  min-height: 120px;
  max-height: 280px;
  overflow-y: auto;
  padding: 12px 14px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 12px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
  border: 1px solid #334155;
}
.dash-console-rcon .line-cmd { color: #4ade80; margin-bottom: 6px; white-space: pre-wrap; }
.dash-console-rcon .line-out { color: #f1f5f9; margin-bottom: 10px; white-space: pre-wrap; }
.dash-console-rcon .line-err { color: #f87171; margin-bottom: 10px; white-space: pre-wrap; }
.dash-console-input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}
.dash-console-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}
.dashboard-pro .dash-console-input-row .apply-btn {
  margin-left: 0;
}

/* Adminler (CounterStrikeSharp) */
.adm-top-summary {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: #fffbeb;
  border: 2px solid #f59e0b;
  box-shadow: none;
}
.adm-top-summary__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.adm-top-summary__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #d97706;
}
.adm-top-summary__icon-mark {
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
}
.adm-top-summary__icon-mark-fill {
  fill: #fff;
}
.adm-top-summary__text {
  margin: 0;
  color: #92400e;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
}
.adm-steam-hint {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #78350f;
  background: #fffbeb;
  border: 2px solid #f59e0b;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.25);
}
.adm-steam-hint code {
  font-size: 0.9em;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.15);
}
.adm-steam-hint a {
  color: #b45309;
  font-weight: 600;
  text-decoration: underline;
}
.adm-steam-hint a:hover {
  color: #92400e;
}
.adm-admin-name {
  font-weight: 600;
  color: #1e293b;
}
.adm-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px 18px;
  margin-bottom: 16px;
}
.adm-page-head__title-wrap {
  flex: 1 1 auto;
  min-width: min(100%, 260px);
}
.adm-page-head__title.dash-console-head__title {
  font-size: 1.5rem;
  font-weight: 700;
}
.adm-page__feedback.dashboard-inline-msg:not(.hidden) {
  margin-bottom: 14px;
}
.adm-search-wrap {
  position: relative;
  flex: 1;
  max-width: 360px;
  min-width: 220px;
}
.adm-search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adm-search__icon svg {
  display: block;
}
.adm-search {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #1e293b;
  font-size: 14px;
}
.adm-search--has-icon {
  padding-left: 42px;
}
.adm-search::placeholder {
  color: #94a3b8;
}
.adm-search:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.35);
}
.adm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
}
.adm-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-weight: 600;
  font-size: 14px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.15s ease;
}
.adm-tab__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #94a3b8;
}
.adm-tab__ico svg {
  display: block;
}
.adm-tab__label {
  line-height: 1.2;
}
.adm-tab:hover {
  color: #2563eb;
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.adm-tab:hover .adm-tab__ico {
  color: #2563eb;
}
.adm-tab.is-active {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
  box-shadow: 0 6px 14px -10px rgba(29, 78, 216, 0.6);
}
.adm-tab.is-active .adm-tab__ico {
  color: #1d4ed8;
}
.adm-panel-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 16px;
  align-items: center;
  margin-bottom: 14px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 520px) {
  .adm-panel-toolbar {
    grid-template-columns: 1fr;
  }
  .adm-panel-toolbar > .action-btn.primary {
    width: 100%;
    justify-self: stretch;
    box-sizing: border-box;
  }
}
.adm-count {
  margin: 0;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
  min-width: 0;
}
.adm-table thead .adm-table__th-actions {
  text-align: center;
  vertical-align: middle;
}
.adm-table tbody .adm-table__cell-actions {
  text-align: center;
  vertical-align: middle;
}
.adm-table__th-actions {
  width: 1%;
  white-space: nowrap;
  font-weight: 650;
}
.adm-table-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 10rem;
  margin-inline: auto;
  box-sizing: border-box;
}
.adm-table .action-btn {
  margin: 2px 4px 2px 0;
  padding: 6px 10px;
  font-size: 13px;
}
.adm-table .adm-table-actions .action-btn {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
}
.adm-muted {
  color: #94a3b8;
  font-size: 12px;
}
.adm-modal-panel {
  max-width: 560px;
  max-height: min(88vh, 720px);
}

/* Admin / Grup / Tag modalları — başlık rozeti ve bölüm etiketleri */
.adm-modal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.adm-modal-head__badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adm-modal-head__badge svg {
  display: block;
}
.adm-modal-head--admin .adm-modal-head__badge {
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  border: 1px solid #bfdbfe;
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.08);
}
.adm-modal-head--group .adm-modal-head__badge {
  background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
  color: #6d28d9;
  border: 1px solid #c4b5fd;
  box-shadow: 0 1px 2px rgba(109, 40, 217, 0.08);
}
.adm-modal-head--tag .adm-modal-head__badge {
  background: linear-gradient(145deg, #eff6ff 0%, #e0f2fe 100%);
  color: #1d4ed8;
  border: 1px solid #93c5fd;
  box-shadow: 0 1px 2px rgba(29, 78, 216, 0.08);
}
.adm-modal-head__title {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.adm-modal-head .system-modal__title--css {
  color: #1e3a8a;
}
.adm-modal-head .system-modal__title--mm {
  color: #5b21b6;
}

.adm-form-block {
  margin-bottom: 20px;
}
.adm-form-block:last-of-type {
  margin-bottom: 8px;
}
.adm-form-block__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
}
.adm-form-block__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}
.adm-form-block__ico svg {
  display: block;
}
.adm-form-block__lead {
  margin: -2px 0 10px;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
}
.adm-form-block__hint {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.45;
}

.adm-details-card {
  margin-top: 4px;
  margin-bottom: 16px;
  padding: 12px 14px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #fafafa 0%, #f8fafc 100%);
}
.adm-details-card[open] {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.adm-details-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
  list-style: none;
}
.adm-details-summary::-webkit-details-marker {
  display: none;
}
.adm-details-summary__ico {
  display: flex;
  color: #64748b;
}
.adm-details-summary__ico svg {
  display: block;
}
.adm-details-summary code {
  font-size: inherit;
  font-weight: 600;
  background: #f1f5f9;
  padding: 1px 5px;
  border-radius: 4px;
}
.adm-details-card__hint {
  margin: 12px 0 10px;
  font-size: 12px;
  line-height: 1.45;
}
.adm-tag-team-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
}

.adm-field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #475569;
}
.adm-label {
  display: block;
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.adm-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  box-sizing: border-box;
}
.adm-flags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px 12px;
  margin-top: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding: 10px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.adm-flag-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #334155;
  cursor: pointer;
}

.adm-modal-panel--tag {
  max-width: 580px;
}
.adm-tag-key-panel {
  margin-bottom: 10px;
}
.adm-tag-hint {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.45;
}
.adm-tag-hint--tight {
  margin-top: 4px;
  margin-bottom: 6px;
}
.adm-tag-swatches {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.adm-tag-swatches::-webkit-scrollbar {
  height: 6px;
}
.adm-tag-swatches::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
.adm-tag-swatch {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  max-width: 26px;
  max-height: 26px;
  border-radius: 6px;
  border: 2px solid rgba(15, 23, 42, 0.3);
  cursor: pointer;
  padding: 0;
  flex: 0 0 26px;
  box-sizing: border-box;
}
.adm-tag-swatch:hover {
  transform: scale(1.07);
  border-color: #0f172a;
  box-shadow: 0 0 0 1px #fff;
}
.adm-modal-panel--tag .action-btn--ghost {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 13px;
}
.adm-modal-panel--tag .action-btn--ghost:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
}

/* MySQL panel */
.dashboard-pro__main.mysql-page {
  gap: 22px;
}
.mysql-page__control {
  gap: 12px;
}
.mysql-page__head-ico {
  color: #00758f;
}
.mysql-page__head-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mysql-page__hero-note {
  margin: 0;
}
.mysql-page__card {
  margin-bottom: 0;
}
.mysql-page__card--create {
  padding-top: 18px;
}
.mysql-page__section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.mysql-page__section-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border: 1px solid #7dd3fc;
  color: #0369a1;
}
.mysql-page__section-ico--tables {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border-color: #bfdbfe;
  color: #2563eb;
}
.mysql-page__section-title {
  margin: 0;
}
.mysql-page__notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.mysql-page__hint-note {
  margin: 0;
}
.mysql-page__hint-note code {
  font-size: 12px;
}
.mysql-page__create-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.mysql-page__create-row .adm-input {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  margin: 0;
}
.mysql-page__create-row .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mysql-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.mysql-page__toolbar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.mysql-page__toolbar-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, #ecfeff 0%, #f0fdfa 100%);
  border: 1px solid #99f6e4;
  color: #0f766e;
}
.mysql-page__toolbar .dash-section-title {
  margin: 0;
}
.mysql-page__toolbar .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mysql-page__wizard-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  line-height: 1.25;
}
.mysql-page__ver-badge {
  display: inline-block;
  font-size: 0.72em;
  font-weight: 650;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  vertical-align: middle;
  background: linear-gradient(135deg, #e0f2fe 0%, #eff6ff 100%);
  border: 1px solid #7dd3fc;
  color: #0369a1;
}
.mysql-page__hint-note--beta.bans-page__info {
  background: linear-gradient(90deg, #fffbeb 0%, #fffdf7 45%);
  border-color: #fcd34d;
  color: #92400e;
}
.mysql-page__hint-note--beta .bans-page__info-icon {
  background: #fef3c7;
  border-color: #fde047;
  color: #b45309;
}
.mysql-page__list-card {
  position: relative;
  overflow: hidden;
}
.mysql-page__list-card--syncing::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 36%,
    rgba(37, 99, 235, 0.07) 48%,
    transparent 58%
  );
  background-size: 220% 100%;
  animation: mysql-list-shimmer 0.85s ease infinite;
}
@keyframes mysql-list-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.mysql-page__refresh-btn.is-loading {
  opacity: 0.92;
  cursor: wait;
}
.mysql-page__refresh-btn.is-loading .mysql-page__refresh-ico {
  animation: dash-ctl-spin 0.65s linear infinite;
}
.mysql-page__db-table-wrap {
  border-radius: 12px;
  transition:
    box-shadow 0.35s ease,
    opacity 0.25s ease;
}
.mysql-page__list-card--syncing .mysql-page__db-table-wrap {
  opacity: 0.92;
}
.mysql-page__row--selected {
  background: #f1f5f9;
}
.mysql-page__preview-panel {
  max-width: min(96vw, 920px);
  max-height: min(90vh, 720px);
}
.mysql-page__preview-scroll {
  max-height: min(55vh, 420px);
  overflow: auto;
  margin-bottom: 12px;
}

.mysql-creds-modal__panel {
  max-width: min(96vw, 560px);
}
.mysql-creds-modal__lead {
  margin: 0 0 14px;
  font-size: 0.92rem;
}
.mysql-creds-modal__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 14px;
}
.mysql-creds-modal__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.mysql-creds-modal__row dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;
  margin: 0;
}
.mysql-creds-modal__row dd {
  margin: 0;
  min-width: 0;
}
.mysql-creds-modal__row code {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88rem;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  word-break: break-all;
}
.mysql-creds-modal__warn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  margin: 0 0 14px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: 10px;
  color: #92400e;
  font-size: 0.85rem;
  line-height: 1.45;
}
.mysql-creds-modal__warn svg {
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 520px) {
  .mysql-creds-modal__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.dashboard-pro #mysql-inline-msg.dashboard-inline-msg.success,
.dashboard-pro #mysql-inline-msg.dashboard-inline-msg.error {
  background: transparent;
  border: none;
  color: inherit;
}
.dashboard-pro #mysql-inline-msg.mysql-inline-msg {
  display: flex;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.dashboard-pro #mysql-inline-msg.mysql-inline-msg--leaving {
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
}
.dashboard-pro #mysql-inline-msg.dashboard-inline-msg:not(.hidden) {
  margin-bottom: 14px;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  animation: mysql-inline-msg-in 0.32s ease;
}
@keyframes mysql-inline-msg-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dashboard-pro #mysql-inline-msg.dashboard-inline-msg.success .mysql-inline-msg__inner {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 1px solid #a7f3d0;
  color: #166534;
}
.dashboard-pro #mysql-inline-msg.dashboard-inline-msg.error .mysql-inline-msg__inner {
  background: linear-gradient(135deg, #fef2f2 0%, #fff7f7 100%);
  border: 1px solid #fecaca;
  color: #991b1b;
}
.dashboard-pro #mysql-inline-msg .mysql-inline-msg__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  box-sizing: border-box;
}
.dashboard-pro #mysql-inline-msg .mysql-inline-msg__ico {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.dashboard-pro #mysql-inline-msg.dashboard-inline-msg.success .mysql-inline-msg__ico {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}
.dashboard-pro #mysql-inline-msg.dashboard-inline-msg.error .mysql-inline-msg__ico {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.dashboard-pro #mysql-inline-msg .mysql-inline-msg__text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.45;
}
.dashboard-pro #mysql-inline-msg .mysql-inline-msg__ico-svg {
  display: block;
}

/* FTP */
.dashboard-pro .dash-card--ftp {
  padding: 20px 22px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.ftp-page-head {
  margin-bottom: 14px;
}
.ftp-page-head .dash-console-head {
  align-items: flex-start;
}
.ftp-page-head__brand-ico {
  color: #0ea5e9;
}
.ftp-page-head__titles {
  min-width: 0;
}
.ftp-page-head__lead {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
  font-weight: 500;
  max-width: 52ch;
}
.ftp-root-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e0f2fe;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}
.ftp-root-hint__ico {
  display: flex;
  flex-shrink: 0;
  color: #0284c7;
  margin-top: 1px;
}
.ftp-root-hint code {
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #bae6fd;
  color: #0c4a6e;
}

.dashboard-pro #ftp-inline-msg.dashboard-inline-msg.success,
.dashboard-pro #ftp-inline-msg.dashboard-inline-msg.error {
  background: transparent;
  border: none;
  color: inherit;
}
.dashboard-pro #ftp-inline-msg.ftp-inline-msg {
  display: flex;
  align-items: stretch;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.dashboard-pro #ftp-inline-msg.ftp-inline-msg--leaving {
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
}
.dashboard-pro #ftp-inline-msg.dashboard-inline-msg:not(.hidden) {
  margin-bottom: 14px;
  padding: 0;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  animation: ftp-inline-msg-in 0.32s ease;
}
@keyframes ftp-inline-msg-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dashboard-pro #ftp-inline-msg.dashboard-inline-msg.success .ftp-inline-msg__inner {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 1px solid #a7f3d0;
  color: #166534;
}
.dashboard-pro #ftp-inline-msg.dashboard-inline-msg.error .ftp-inline-msg__inner {
  background: linear-gradient(135deg, #fef2f2 0%, #fff7f7 100%);
  border: 1px solid #fecaca;
  color: #991b1b;
}
.dashboard-pro #ftp-inline-msg .ftp-inline-msg__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  box-sizing: border-box;
}
.dashboard-pro #ftp-inline-msg .ftp-inline-msg__ico {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.dashboard-pro #ftp-inline-msg.dashboard-inline-msg.success .ftp-inline-msg__ico {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}
.dashboard-pro #ftp-inline-msg.dashboard-inline-msg.error .ftp-inline-msg__ico {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.dashboard-pro #ftp-inline-msg .ftp-msg-ico-svg {
  display: block;
}
.dashboard-pro #ftp-inline-msg .ftp-inline-msg__text {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ftp-toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.ftp-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.ftp-tool-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.ftp-tool-btn svg {
  flex-shrink: 0;
  color: #64748b;
}
.ftp-tool-btn:hover:not(:disabled) {
  border-color: #93c5fd;
  background: #f8fafc;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}
.ftp-tool-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.ftp-tool-btn--primary {
  border-color: #3b82f6;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.35);
}
.ftp-tool-btn--primary svg {
  color: rgba(255, 255, 255, 0.95);
}
.ftp-tool-btn--primary:hover:not(:disabled) {
  border-color: #2563eb;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
}
.ftp-tool-btn--ghost {
  border-style: dashed;
  border-color: #cbd5e1;
  background: #fafafa;
}
.ftp-tool-btn--ghost:hover:not(:disabled) {
  border-color: #94a3b8;
  background: #f1f5f9;
}
.ftp-tool-btn__busy {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ftp-path-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(165deg, #f8fafc 0%, #ffffff 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.ftp-path-card__pin {
  display: flex;
  flex-shrink: 0;
  color: #64748b;
  margin-top: 2px;
}
.ftp-path-card__pin svg {
  display: block;
}
.ftp-path-card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.ftp-path-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.ftp-path {
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
  word-break: break-all;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.45;
}

.ftp-table-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.dashboard-pro .ftp-table--modern thead th {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  color: #334155;
  font-weight: 650;
  font-size: 12px;
  padding: 12px 10px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}
.ftp-th {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ftp-th svg {
  flex-shrink: 0;
  color: #64748b;
}
.ftp-th--narrow {
  white-space: nowrap;
}
.ftp-table__th-delete {
  width: 1%;
  text-align: center;
}
.dashboard-pro .ftp-table--modern tbody td {
  vertical-align: middle;
  padding: 11px 10px;
}
.dashboard-pro .ftp-table--modern tbody tr:hover td {
  background: #fafbff;
}
.ftp-cell-size,
.ftp-cell-date {
  font-size: 13px;
  color: #475569;
}
.ftp-cell-date {
  white-space: nowrap;
}

.ftp-name-cell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  max-width: 100%;
}
.ftp-name-cell .ftp-item-link {
  flex: 1 1 auto;
  min-width: 0;
}
.ftp-zip-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border-radius: 8px;
  border: 1px solid #c4b5fd;
  background: linear-gradient(180deg, #faf5ff 0%, #f5f3ff 100%);
  color: #5b21b6;
  font-size: 12px;
  font-weight: 650;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
  white-space: nowrap;
}
.ftp-zip-btn:hover {
  border-color: #a78bfa;
  background: #faf5ff;
}
.ftp-zip-btn:active {
  transform: scale(0.98);
}

.ftp-item-link {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  color: #1e293b;
  font-size: 14px;
  line-height: 1.35;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: color 0.15s ease;
  box-shadow: none;
}
.ftp-item-link__ico {
  display: flex;
  flex-shrink: 0;
  color: #94a3b8;
}
.ftp-item-link.is-dir .ftp-item-link__ico {
  color: #0ea5e9;
}
.ftp-item-link.is-file .ftp-item-link__ico {
  color: #6366f1;
}
.ftp-item-link.is-muted .ftp-item-link__ico {
  color: #cbd5e1;
}
.ftp-item-link__name {
  min-width: 0;
  word-break: break-word;
}
.ftp-item-ico {
  display: block;
}
.ftp-item-link:hover {
  color: #0f172a;
}
.ftp-item-link:focus,
.ftp-item-link:focus-visible,
.ftp-item-link:active {
  outline: none;
}
.ftp-item-link.is-dir {
  font-weight: 600;
}
.ftp-item-link.is-muted {
  color: #94a3b8;
  cursor: default;
}
.ftp-item-link:disabled {
  opacity: 1;
}

.ftp-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.03em;
}
.ftp-type-badge--dir {
  background: #e0f2fe;
  border: 1px solid #7dd3fc;
  color: #0369a1;
}
.ftp-type-badge--file {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #4338ca;
}

.ftp-empty {
  padding: 0 !important;
  border: none !important;
}
.ftp-empty__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  color: #64748b;
  font-size: 14px;
}
.ftp-empty__ico {
  display: flex;
  opacity: 0.45;
}
.ftp-empty__ico .ftp-item-ico {
  color: #94a3b8;
}

.ftp-cell-delete {
  text-align: center;
  vertical-align: middle !important;
  width: 52px;
}
.ftp-delete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #fecaca;
  background: #fff;
  color: #b91c1c;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
}
.ftp-delete-btn:hover:not(:disabled) {
  background: #fef2f2;
  border-color: #f87171;
}
.ftp-delete-btn:active:not(:disabled) {
  transform: scale(0.96);
}
.ftp-delete-btn svg {
  display: block;
}
.ftp-delete-placeholder {
  display: inline-block;
  color: #cbd5e1;
  font-size: 14px;
  cursor: help;
}

.ftp-editor-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.ftp-editor-head__ico {
  display: flex;
  flex-shrink: 0;
  color: #6366f1;
}
.ftp-editor-head__text {
  min-width: 0;
}
.ftp-editor-head__title {
  margin: 0 0 4px;
}
.ftp-editor-head__hint {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
}

.ftp-editor {
  width: 100%;
  min-height: 360px;
  resize: vertical;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
  color: #1e293b;
  background: #f8fafc;
}
.ftp-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}
.ftp-editor-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ftp-editor-footer-btn svg {
  flex-shrink: 0;
}
.ftp-editor-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ftp-editor-save-btn svg {
  flex-shrink: 0;
}
.ftp-upload-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.ftp-editor-modal-panel {
  max-width: min(1100px, 94vw);
  width: 100%;
  max-height: 92vh;
  padding: 20px 22px 22px;
}

/* ========== Bans / punishments page ========== */
.dashboard-pro__main.bans-page {
  gap: 22px;
}

.dashboard-pro__main.bans-page .bans-page__control {
  gap: 12px;
}

.bans-page__info--toolbar-lead {
  margin-bottom: 14px;
}

.bans-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: flex-start;
}

@media (min-width: 640px) {
  .bans-page__toolbar {
    justify-content: space-between;
  }
}

.bans-player-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  text-align: left;
}

.bans-player-cell__line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 2px;
  font-size: 13px;
  line-height: 1.45;
  color: #0f172a;
}

.bans-player-cell__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.bans-player-cell__sep {
  color: #94a3b8;
  font-weight: 500;
  user-select: none;
}

.bans-player-cell__val {
  font-weight: 600;
  color: #0f172a;
  word-break: break-word;
}

.dashboard-pro .bans-td-player {
  min-width: 200px;
  max-width: 340px;
  vertical-align: top !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/* <label> kullaniliyor; global `label { display: grid }` ikon+input ust uste bindirmeyi bozuyordu */
.bans-page__search-wrap {
  display: block;
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 340px;
  margin: 0;
  color: inherit;
}

.bans-page__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  display: flex;
}

.bans-page__search {
  width: 100%;
  padding: 10px 12px 10px 40px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #1e293b;
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Global `input { background: #0f1729 }` (auth/login) dashboard icindeki aramayi eziyordu */
.dashboard-pro .bans-page__search {
  background: #ffffff;
  color: #1e293b;
  border-color: #cbd5e1;
}

.bans-page__search::placeholder {
  color: #94a3b8;
}

.bans-page__search:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.35);
}

.bans-page__refresh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
}
.bans-page__refresh svg {
  flex-shrink: 0;
  color: #1e40af;
}

.bans-page__warnings {
  margin-bottom: 0;
}

.bans-page__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 720px) {
  .bans-page__stats {
    grid-template-columns: 1fr;
  }
}

.bans-stat {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bans-stat:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.bans-stat__value {
  font-size: 1.75rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.bans-stat__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.bans-stat--steam {
  border-color: #fecdd3;
  background: linear-gradient(180deg, #fff1f2 0%, #ffffff 55%);
}

.bans-stat--steam .bans-stat__value {
  color: #be123c;
}

.bans-stat--ip {
  border-color: #fde68a;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 55%);
}

.bans-stat--ip .bans-stat__value {
  color: #b45309;
}

.bans-stat--comm {
  border-color: #ddd6fe;
  background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 55%);
}

.bans-stat--comm .bans-stat__value {
  color: #6d28d9;
}

.bans-page__info {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, #eff6ff 0%, #f8fafc 40%);
  border: 1px solid #bfdbfe;
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
}

.bans-page__info code {
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.bans-page__info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bans-page__info-text {
  min-width: 0;
}

.bans-card__head {
  align-items: flex-start;
  margin-bottom: 10px;
}

.bans-card__desc {
  margin: 4px 0 0;
  font-size: 13px;
  color: #64748b;
  font-weight: 450;
  line-height: 1.4;
}

.bans-page__info--card-note {
  margin-bottom: 14px;
}

.bans-card.bans-card--steam {
  border-color: #fecaca;
  box-shadow:
    0 4px 6px -1px rgba(220, 38, 38, 0.06),
    0 14px 36px rgba(15, 23, 42, 0.06);
}

.bans-card.bans-card--ip {
  border-color: #fcd34d;
  box-shadow:
    0 4px 6px -1px rgba(217, 119, 6, 0.06),
    0 14px 36px rgba(15, 23, 42, 0.06);
}

.bans-card.bans-card--comm {
  border-color: #c4b5fd;
  box-shadow:
    0 4px 6px -1px rgba(109, 40, 217, 0.06),
    0 14px 36px rgba(15, 23, 42, 0.06);
}

.bans-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bans-icon svg {
  flex-shrink: 0;
}

.bans-icon--steam {
  background: linear-gradient(145deg, #fee2e2, #fef2f2) !important;
  border-color: #fecaca !important;
  color: #b91c1c !important;
}

.bans-icon--ip {
  background: linear-gradient(145deg, #fef3c7, #fffbeb) !important;
  border-color: #fde68a !important;
  color: #b45309 !important;
}

.bans-icon--comm {
  background: linear-gradient(145deg, #ede9fe, #f5f3ff) !important;
  border-color: #ddd6fe !important;
  color: #6d28d9 !important;
}

.dashboard-pro .bans-card .dash-section-title {
  font-size: 1.2rem;
}

.bans-row-empty td {
  text-align: center;
  padding: 28px 16px !important;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
}

.bans-card__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.dashboard-pro .bans-btn-remove-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: #dc2626;
  color: #fff !important;
  border: 1px solid #b91c1c;
  box-shadow: 0 1px 2px rgba(185, 28, 28, 0.25);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.dashboard-pro .bans-btn-remove-all svg {
  flex-shrink: 0;
  opacity: 0.95;
}

.bans-rm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}
.bans-rm-btn svg {
  flex-shrink: 0;
  opacity: 0.95;
}

.dashboard-pro .bans-btn-remove-all:hover:not(:disabled) {
  background: #b91c1c;
  border-color: #991b1b;
}

.dashboard-pro .bans-btn-remove-all:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Ban sayfasi — tarayici confirm yerine panel icinde onay */
.bans-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bans-confirm-modal.hidden {
  display: none !important;
}

.bans-confirm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
}

.bans-confirm-modal__panel {
  position: relative;
  max-width: 460px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 25px 50px -12px rgba(15, 23, 42, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  padding: 0;
  overflow: hidden;
}

.bans-confirm-modal__top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 24px 8px;
}

.bans-confirm-modal__icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bans-confirm-modal__icon-wrap--steam {
  background: linear-gradient(145deg, #fff1f2, #ffffff);
  border: 1px solid #fecdd3;
  color: #be123c;
}

.bans-confirm-modal__icon-wrap--ip {
  background: linear-gradient(145deg, #fffbeb, #ffffff);
  border: 1px solid #fde68a;
  color: #b45309;
}

.bans-confirm-modal__icon-wrap--comm {
  background: linear-gradient(145deg, #f5f3ff, #ffffff);
  border: 1px solid #ddd6fe;
  color: #6d28d9;
}

.bans-confirm-modal__ico-svg {
  display: block;
}

.bans-confirm-modal__copy {
  flex: 1;
  min-width: 0;
}

.bans-confirm-modal__title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 750;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.bans-confirm-modal__body {
  margin: 0;
}

.bans-confirm-modal__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  font-weight: 450;
}

.bans-confirm-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 20px 20px;
  background: linear-gradient(180deg, #fafbfc 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
}

.bans-confirm-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 650;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease,
    box-shadow 0.15s ease;
}

.bans-confirm-modal__btn svg {
  flex-shrink: 0;
}

.bans-confirm-modal__btn--ghost {
  background: #ffffff;
  color: #475569;
  border: 1px solid #cbd5e1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.bans-confirm-modal__btn--ghost:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.bans-confirm-modal__btn--danger {
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff !important;
  border: 1px solid #b91c1c;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
}

.bans-confirm-modal__btn--danger:hover {
  background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%);
}

.bans-confirm-modal__btn--danger:active {
  transform: scale(0.98);
}

.dashboard-pro #bans-inline-msg.dashboard-inline-msg.success,
.dashboard-pro #bans-inline-msg.dashboard-inline-msg.error {
  background: transparent;
  border: none;
  color: inherit;
}

.dashboard-pro #bans-inline-msg.bans-inline-msg {
  display: flex;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.dashboard-pro #bans-inline-msg.bans-inline-msg--leaving {
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
}

.dashboard-pro #bans-inline-msg.dashboard-inline-msg:not(.hidden) {
  margin-bottom: 14px;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  animation: bans-inline-msg-in 0.3s ease;
}

@keyframes bans-inline-msg-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboard-pro #bans-inline-msg.dashboard-inline-msg.success .bans-inline-msg__inner {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 1px solid #a7f3d0;
  color: #166534;
}

.dashboard-pro #bans-inline-msg.dashboard-inline-msg.error .bans-inline-msg__inner {
  background: linear-gradient(135deg, #fef2f2 0%, #fff7f7 100%);
  border: 1px solid #fecaca;
  color: #991b1b;
}

.dashboard-pro #bans-inline-msg .bans-inline-msg__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  box-sizing: border-box;
}

.dashboard-pro #bans-inline-msg .bans-inline-msg__ico {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.dashboard-pro #bans-inline-msg.dashboard-inline-msg.success .bans-inline-msg__ico {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.dashboard-pro #bans-inline-msg.dashboard-inline-msg.error .bans-inline-msg__ico {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.dashboard-pro #bans-inline-msg .bans-inline-msg__text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

/* Genel / sunucu ayarlari */
.general-page__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.general-page__grid {
  display: grid;
  gap: 20px;
  align-items: start;
}
@media (min-width: 960px) {
  .general-page__grid {
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    align-items: stretch;
  }
}
.general-page__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.general-page__column--settings {
  min-width: 0;
}
.general-page__cfg-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.general-page__fields {
  display: grid;
  gap: 12px;
}
.general-page__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

/* Global `input, select { background: #0f1729 }` bu sayfayi da boyuyor; .general-page icinde tum kontrolleri acik tema + !important ile sabitle */
.dashboard-pro .general-page input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]),
.dashboard-pro .general-page select,
.dashboard-pro .general-page textarea,
.dashboard-pro .general-page__input,
.dashboard-pro .general-page__textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1 !important;
  background: #fff !important;
  background-color: #fff !important;
  color: #0f172a !important;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.dashboard-pro .general-page textarea,
.dashboard-pro .general-page__textarea {
  font-family: ui-monospace, Consolas, "Cascadia Code", monospace;
  font-size: 12.5px;
  line-height: 1.65;
  white-space: pre;
  tab-size: 4;
  resize: vertical;
  min-height: 320px;
  min-block-size: 18rem;
  background: #f8fafc !important;
  background-color: #f8fafc !important;
}
.dashboard-pro .general-page textarea.general-page__textarea--cfg {
  min-height: min(58vh, 680px);
  min-block-size: 26rem;
  font-size: 13px;
}
.dashboard-pro .general-page select {
  appearance: auto;
  -webkit-appearance: menulist;
}
.dashboard-pro .general-page input:-webkit-autofill,
.dashboard-pro .general-page input:-webkit-autofill:hover,
.dashboard-pro .general-page input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #0f172a !important;
}
.dashboard-pro .general-page__input:focus,
.dashboard-pro .general-page__textarea:focus,
.dashboard-pro .general-page input:not([type="hidden"]):focus,
.dashboard-pro .general-page select:focus,
.dashboard-pro .general-page textarea:focus {
  outline: none;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}
.general-page__hint {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}
.general-page__hint code {
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #f1f5f9;
}
.general-page__mode-file {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: #1d4ed8;
  letter-spacing: 0.01em;
}
.general-page__field-grid {
  display: grid;
  gap: 14px 16px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.general-page__field-grid--settings {
  grid-template-columns: 1fr;
}
.general-page__field-cell {
  min-width: 0;
}
@media (min-width: 960px) {
  .general-page__card--cfg {
    display: flex;
    flex-direction: column;
    min-height: min(82vh, 920px);
    min-width: 0;
  }
  .general-page__card--cfg .general-page__textarea--cfg {
    flex: 1 1 auto;
    min-height: min(68vh, 780px);
  }
}
.general-page form[inert] {
  opacity: 0.65;
  pointer-events: none;
}

.dashboard-pro .action-btn.general-page__btn-vote {
  background: linear-gradient(135deg, #059669, #047857);
  border: 1px solid #04654a;
  color: #fff;
  box-shadow: 0 2px 6px rgba(4, 120, 87, 0.35);
}
.dashboard-pro .action-btn.general-page__btn-vote:hover:not(:disabled) {
  background: linear-gradient(135deg, #047857, #065f46);
  border-color: #064e3b;
  color: #fff;
  transform: translateY(-1px);
}

/* Genel — oylama haritalari modal */
.general-vote-modal {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.general-vote-modal.hidden {
  display: none !important;
}
.general-vote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
}
.general-vote-modal__panel {
  position: relative;
  max-width: 480px;
  width: 100%;
  max-height: min(80vh, 640px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  padding: 22px 24px 20px;
}
.general-vote-modal__title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.general-vote-modal__lead {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}
.general-vote-modal__lead code {
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #334155;
}
.general-vote-modal__meta {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  color: #047857;
  line-height: 1.45;
}
.general-vote-modal__form {
  display: grid;
  gap: 10px;
}
.general-vote-modal__field {
  min-width: 0;
}
.general-vote-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}
.dashboard-pro .general-vote-modal__panel .general-page__input {
  border: 1px solid #cbd5e1 !important;
  background: #fff !important;
  background-color: #fff !important;
  color: #0f172a !important;
}
.dashboard-pro .general-vote-modal__panel .general-page__input:focus {
  outline: none;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}

/* Genel ayarlar: alt kullaniciya gizli alanlar (kopyalanamaz) */
.panel-secret-masked {
  user-select: none;
  -webkit-user-select: none;
  cursor: not-allowed;
  letter-spacing: 0.2em;
}
.users-page__form .users-page__field,
.users-page__perms {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.users-page__check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
  font-size: 14px;
  cursor: pointer;
}

@keyframes users-msg-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dashboard-pro__main.users-page .users-page__page-ico {
  color: #059669;
}
.dashboard-pro__main.users-page .users-page__page-ico .users-page__user-mark-svg {
  display: block;
  width: 34px;
  height: 34px;
}
.dashboard-pro__main.users-page .dash-card--users.users-page__toolbar-card {
  margin: 0;
  padding: 16px 20px 18px;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.dashboard-pro__main.users-page .users-page__card-title-head {
  padding-left: 0;
  padding-right: 0;
  margin: 0 0 12px;
}
.dashboard-pro__main.users-page .users-page__toolbar-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}
.dashboard-pro__main.users-page .users-page__toolbar-actions .users-page__cta {
  flex-shrink: 0;
}
.dashboard-pro__main.users-page .users-page__tagline {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: #64748b;
}
.dashboard-pro__main.users-page .users-page__user-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.dashboard-pro__main.users-page .users-page__row-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  line-height: 0;
}
.dashboard-pro__main.users-page .users-page__row-ico .users-page__user-mark-svg {
  display: block;
  width: 18px;
  height: 18px;
}
.dashboard-pro__main.users-page .users-page__user-cell strong {
  min-width: 0;
}
.dashboard-pro__main.users-page .users-page__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-left: 16px;
  padding-right: 18px;
}
.dashboard-pro__main.users-page .users-page__cta-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: 0.95;
}
.dashboard-pro__main.users-page .users-page__cta-ico svg {
  display: block;
}
.dashboard-pro__main.users-page .users-page__note {
  margin-top: 0;
}
.dashboard-pro__main.users-page .users-msg {
  margin-top: 16px;
}
.dashboard-pro__main.users-page .users-msg:not(.hidden) .users-msg__inner {
  animation: users-msg-in 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.dashboard-pro__main.users-page .users-msg__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(155deg, #ffffff 0%, #f8fafc 55%, #fafafa 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 10px 36px rgba(15, 23, 42, 0.06);
}
.dashboard-pro__main.users-page .users-msg__inner--success {
  border-color: rgba(52, 211, 153, 0.45);
  background: linear-gradient(155deg, #ecfdf5 0%, #f0fdf4 45%, #ffffff 100%);
}
.dashboard-pro__main.users-page .users-msg__inner--error {
  border-color: rgba(248, 113, 113, 0.45);
  background: linear-gradient(155deg, #fef2f2 0%, #fffbfb 50%, #ffffff 100%);
}
.dashboard-pro__main.users-page .users-msg__ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  line-height: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  color: #0f172a;
}
.dashboard-pro__main.users-page .users-msg__inner--success .users-msg__ico {
  background: linear-gradient(145deg, rgba(220, 252, 231, 0.95) 0%, rgba(187, 247, 208, 0.75) 100%);
  color: #15803d;
}
.dashboard-pro__main.users-page .users-msg__inner--error .users-msg__ico {
  background: linear-gradient(145deg, rgba(254, 226, 226, 0.95) 0%, rgba(254, 202, 202, 0.7) 100%);
  color: #b91c1c;
}
.dashboard-pro__main.users-page .users-msg__svg {
  display: block;
}
.dashboard-pro__main.users-page .users-msg__text {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: #0f172a;
  text-align: left;
}
.dashboard-pro__main.users-page .users-msg__inner--success .users-msg__text {
  color: #14532d;
}
.dashboard-pro__main.users-page .users-msg__inner--error .users-msg__text {
  color: #7f1d1d;
}
.dashboard-pro__main.users-page .users-page__accounts {
  border-color: #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.dashboard-pro__main.users-page .users-page__section-ico .users-page__user-mark-svg {
  display: block;
  width: 20px;
  height: 20px;
}
.dashboard-pro__main.users-page .users-page__section-head {
  margin-bottom: 14px;
}
.dashboard-pro__main.users-page .users-page__section-title {
  font-size: 1.2rem;
}
.dashboard-pro__main.users-page .users-page__table-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.dashboard-pro__main.users-page .users-page__perm-cell {
  max-width: 280px;
  font-size: 13px;
  color: #475569;
}
.dashboard-pro__main.users-page .users-page__actions {
  white-space: nowrap;
  text-align: right;
}
.dashboard-pro__main.users-page .users-page__actions .action-btn {
  margin-left: 8px;
}
.dashboard-pro__main.users-page .users-page__actions .action-btn:first-child {
  margin-left: 0;
}
#users-modal.users-modal .users-modal__panel {
  padding-top: 22px;
}
#users-modal.users-modal .users-modal__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
#users-modal.users-modal .users-modal__title {
  margin: 0;
  flex: 1;
  min-width: 0;
}
#users-modal.users-modal .users-modal__head-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
  border: 1px solid #a7f3d0;
  color: #047857;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
#users-modal.users-modal .users-modal__head-ico--edit {
  background: linear-gradient(135deg, #e0e7ff 0%, #eef2ff 100%);
  border-color: #c7d2fe;
  color: #4f46e5;
}
#users-modal.users-modal .users-modal__head-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
#users-modal.users-modal .users-modal__head-mark .users-page__user-mark-svg {
  display: block;
  width: 26px;
  height: 26px;
}
#users-modal.users-modal .users-modal__head-mark--edit .users-modal__head-svg {
  display: block;
  width: 26px;
  height: 26px;
}
.dashboard-pro__main.users-page .users-page__fieldset {
  margin: 14px 0 12px;
  padding: 14px 14px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}
.dashboard-pro__main.users-page .users-page__legend {
  padding: 0 8px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #334155;
}
.dashboard-pro__main.users-page .users-page__perm-grid {
  display: grid;
  gap: 4px 12px;
}
@media (min-width: 440px) {
  .dashboard-pro__main.users-page .users-page__perm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Modal #users-form main dışında; önek ikon + input yatay (sol ikon kutusu) */
#users-modal #users-form .users-page__label {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #334155;
}
#users-modal #users-form .users-page__field-hint {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
}
#users-modal #users-form .users-page__control {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  overflow: hidden;
  background: #fff;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
#users-modal #users-form .users-page__control:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
#users-modal #users-form .users-page__control-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  color: #64748b;
}
#users-modal #users-form .users-page__control-ico svg {
  display: block;
}
#users-modal #users-form .users-page__input--control {
  flex: 1 1 0%;
  width: auto;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
#users-modal #users-form .users-page__input--control:focus {
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  .dashboard-pro__main.users-page .users-msg:not(.hidden) .users-msg__inner {
    animation: none;
  }
}

/* Bakım modu (sistem güncellemesi sırasında alt kullanıcı) */
.maintenance-mode-body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(155deg, #f1f5f9 0%, #e2e8f0 42%, #f8fafc 100%);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.maintenance-mode {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.maintenance-mode__card {
  width: 100%;
  max-width: 440px;
  padding: 32px 28px 28px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.06),
    0 18px 48px rgba(15, 23, 42, 0.1);
  text-align: center;
}
.maintenance-mode__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}
.maintenance-mode__ico svg {
  display: block;
}
.maintenance-mode__title {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.maintenance-mode__text {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #475569;
}
.maintenance-mode__actions {
  margin: 0;
}
.maintenance-mode__logout {
  min-width: 140px;
}

/* —— Eklentiler (CounterStrikeSharp) */
.dashboard-pro .dash-card--plugins {
  padding: 20px 22px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.plugins-page-head {
  margin-bottom: 18px;
}
.plugins-page-head .dash-console-head {
  align-items: flex-start;
}
.plugins-page-head__brand-ico {
  color: #4f46e5;
}
.plugins-page-head__titles {
  min-width: 0;
}
.plugins-beta-notice {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e0e7ff;
  background: linear-gradient(145deg, #f5f3ff 0%, #ffffff 70%);
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.06);
}
.plugins-beta-notice__ico {
  display: flex;
  flex-shrink: 0;
  align-self: flex-start;
  color: #6366f1;
  padding-top: 2px;
}
.plugins-beta-notice__ico svg {
  display: block;
}
.plugins-beta-notice__body {
  flex: 1;
  min-width: 0;
}
.plugins-beta-notice__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
  color: #334155;
}
.plugins-beta-notice__text strong {
  font-weight: 650;
  color: #334155;
}
.plugins-upload-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  .plugins-upload-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
.plugins-field-card {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.plugins-field-card--upload {
  background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
  border-color: #e0e7ff;
}
.plugins-field-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.plugins-field-card__label-ico {
  display: flex;
  color: #64748b;
}
.plugins-field-card__input-wrap {
  position: relative;
}
.plugins-field-card__input-ico {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: #94a3b8;
  pointer-events: none;
}
.plugins-field-card__input {
  padding-left: 42px !important;
}
.plugins-field-card__actions {
  margin-top: 4px;
}
.plugins-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding-top: 11px;
  padding-bottom: 11px;
}
.plugins-upload-btn svg {
  flex-shrink: 0;
}
.plugins-upload-btn__busy {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.plugins-field-card__hint {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  line-height: 1.4;
}
.plugins-field-card__hint code {
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #f1f5f9;
}
.plugins-table-wrap {
  margin-top: 4px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.dashboard-pro .plugins-table thead th {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  color: #334155;
  font-weight: 650;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 12px 10px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}
.plugins-th {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.plugins-th svg {
  flex-shrink: 0;
  color: #64748b;
  opacity: 0.9;
}
.plugins-table__th-action {
  width: 1%;
  white-space: nowrap;
}
.dashboard-pro .plugins-table tbody td {
  vertical-align: middle;
  padding: 12px 10px;
}
.dashboard-pro .plugins-table tbody tr:hover td {
  background: #fafbff;
}
.plugins-cell-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-weight: 600;
  color: #0f172a;
}
.plugins-cell-ico {
  flex-shrink: 0;
  color: #6366f1;
}
.plugins-cell-name__text {
  min-width: 0;
  word-break: break-word;
}
.plugins-code {
  font-size: 12px;
  word-break: break-word;
}
.plugins-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
}
.plugins-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.plugins-status--on {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.plugins-status--on .plugins-status__dot {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}
.plugins-status--off {
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
}
.plugins-status--off .plugins-status__dot {
  background: #cbd5e1;
}
.plugins-table-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
.plugins-table-btn .plugins-btn-ico {
  flex-shrink: 0;
}
.plugins-table-btn--danger {
  border-color: #fecaca;
  color: #b91c1c;
  background: #fff;
}
.plugins-table-btn--danger:hover:not(:disabled) {
  background: #fef2f2;
}
.plugins-btn__busy {
  font-weight: 600;
  letter-spacing: 0.06em;
}
.plugins-empty {
  padding: 0 !important;
  border: none !important;
  vertical-align: middle;
}
.plugins-empty__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px 40px;
  gap: 10px;
}
.plugins-empty__ico {
  display: flex;
  color: #a5b4fc;
}
.plugins-empty__title {
  margin: 0;
  font-size: 16px;
  font-weight: 650;
  color: #334155;
}
.plugins-empty__text {
  margin: 0;
  max-width: 36rem;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

/* Panel ayarları */
.dashboard-pro__main.panel-settings-page {
  align-items: center;
}
.dashboard-pro__main.panel-settings-page > .panel-settings-page__flash {
  width: min(100%, 1080px);
  box-sizing: border-box;
}
.panel-settings-page__flash {
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.panel-settings-page__flash--ok {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.panel-settings-page__flash--err {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.panel-settings-page__card {
  width: min(100%, 1080px);
  box-sizing: border-box;
}
.panel-settings-page__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}
.panel-settings-page__hero-tile {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px 24px 24px;
  border-radius: 16px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 45%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 14px 36px rgba(15, 23, 42, 0.07);
}
.panel-settings-page__hero-tile .panel-settings-page__head {
  margin-bottom: 0;
}
.panel-settings-page__welcome-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    inset 4px 0 0 #3b82f6,
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.panel-settings-page__welcome-note-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}
.panel-settings-page__welcome-note-copy {
  min-width: 0;
}
.panel-settings-page__welcome-note-label {
  display: block;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
}
.panel-settings-page__welcome-note-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
}
.panel-settings-page__hero-tile--roadmap {
  justify-content: flex-start;
}
.panel-settings-page__roadmap-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}
.panel-settings-page__roadmap-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.25;
}
.panel-settings-page__roadmap-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}
.panel-settings-page__roadmap-footer {
  margin-top: auto;
  padding-top: 20px;
}
.panel-settings-page__soon-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6d28d9;
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid #c4b5fd;
}
@media (max-width: 880px) {
  .panel-settings-page__hero {
    grid-template-columns: 1fr;
  }
}
.panel-settings-page__subhead {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 650;
  color: #1e293b;
}
.panel-settings-page__soon-block {
  margin-bottom: 28px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.panel-settings-page__soon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.panel-settings-page__soon-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #334155;
}
.panel-settings-page__soon-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #64748b;
}
.panel-settings-page__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #bfdbfe;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  box-shadow: inset 3px 0 0 #3b82f6;
}
.panel-settings-page__note--info .panel-settings-page__note-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: #2563eb;
  border: 1px solid #dbeafe;
}
.panel-settings-page__note-body {
  min-width: 0;
  padding-top: 2px;
}
.panel-settings-page__note-label {
  display: block;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}
.panel-settings-page__note-line {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #334155;
}
.panel-settings-page__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #334155;
}
.panel-settings-page__logo-block {
  padding-top: 8px;
  border-top: 1px solid #e5e7eb;
}
.panel-settings-page__logo-preview {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  min-height: 72px;
}
.panel-settings-page__logo-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: #e0e7ff;
  color: #3730a3;
  border: 1px solid #c7d2fe;
}
.panel-settings-page__logo-img {
  border-radius: 0;
  object-fit: contain;
  background-color: transparent;
  border: 0;
}
.panel-settings-page__logo-fallback {
  width: 72px;
  height: 72px;
}
.panel-settings-page__logo-fallback-text {
  font-size: 13px;
  color: #64748b;
}
.panel-settings-page__logo-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.panel-settings-page__file-label {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  min-height: 36px;
}
.panel-settings-page__file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}
.panel-settings-page__file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  pointer-events: none;
}
.panel-settings-page__file-label:focus-within .panel-settings-page__file-btn {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}
.panel-settings-page__remove-form {
  margin: 0;
}

/* ========== Login (auth) — modern layout ========== */
.login-page {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
}
.login-page .login-form-heading {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}
.login-page.auth-bg::before {
  opacity: 0.92;
}
.login-page .auth-wrap {
  min-height: 100vh;
  padding: 40px 16px 48px;
  display: grid;
  place-items: center;
  position: relative;
}
.login-layout {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.auth-build-footer {
  width: 100%;
  margin: 6px 0 0;
  padding: 0 8px 2px;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(230, 237, 255, 0.52);
  line-height: 1.35;
  user-select: none;
  font-variant-numeric: tabular-nums;
}
.login-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.login-deco--orb {
  width: min(420px, 90vw);
  height: auto;
  aspect-ratio: 1;
}
.login-deco--a {
  top: -140px;
  left: 50%;
  transform: translateX(-58%);
  opacity: 0.9;
}
.login-deco--b {
  bottom: -160px;
  right: 50%;
  transform: translateX(52%);
  opacity: 0.85;
}
.login-deco--grid {
  position: absolute;
  inset: -24px -32px -32px -32px;
  width: calc(100% + 64px);
  height: calc(100% + 56px);
  max-width: none;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
}
.login-brand {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.login-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}
.login-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(308px, 88vw);
  max-height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.28));
}
.login-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(120, 155, 235, 0.22);
  background: linear-gradient(165deg, rgba(22, 32, 56, 0.96) 0%, rgba(14, 22, 40, 0.94) 100%);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 24px 64px rgba(5, 14, 30, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.login-card::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #4f8cff, #6366f1 45%, #fb923c);
  opacity: 1;
}
.login-card-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 26px 26px 0;
}
.login-card-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(79, 140, 255, 0.12);
  border: 1px solid rgba(79, 140, 255, 0.28);
  color: #93b4ff;
}
.login-card-icon {
  width: 22px;
  height: 22px;
}
.login-form-heading {
  margin: 0 0 6px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.login-lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--muted);
}
.login-alert {
  margin: 16px 26px 0;
}
.login-form {
  padding: 22px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.login-page .login-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.login-field-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.login-field-wrap {
  position: relative;
  display: block;
}
.login-field-wrap .login-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: #6b8acb;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}
.login-page .login-field-wrap input {
  width: 100%;
  padding: 12px 14px 12px 44px;
  border-radius: 12px;
  border: 1px solid rgba(58, 82, 130, 0.65);
  background: rgba(10, 16, 32, 0.85);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.login-page .login-field-wrap input::placeholder {
  color: rgba(152, 169, 207, 0.55);
}
.login-page .login-field-wrap input:hover {
  border-color: rgba(90, 120, 190, 0.75);
}
.login-page .login-field-wrap input:focus {
  outline: none;
  border-color: rgba(79, 140, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.18);
}
.login-submit {
  margin-top: 4px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.login-submit svg {
  opacity: 0.92;
  transition: transform 0.2s ease;
}
.login-submit:hover svg {
  transform: translateX(3px);
}
@media (max-width: 420px) {
  .login-card-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .login-deco--a {
    transform: translateX(-50%);
    left: 40%;
  }
}

/* ========== Install wizard (login tema ile uyumlu) ========== */
/* Softer bottom glow on fixed overlay only (avoids sharp horizontal band; upper theme unchanged) */
body.install-page.auth-bg::before {
  background:
    radial-gradient(circle at 15% 15%, rgba(79, 140, 255, 0.28), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(95, 77, 255, 0.35), transparent 40%),
    radial-gradient(ellipse 145% 85% at 50% 100%, rgba(0, 210, 255, 0.08), transparent 68%);
}
.install-page main.container.auth-wrap {
  max-width: min(720px, 100%);
}
.install-page .auth-wrap {
  min-height: 100vh;
  padding: 36px 16px 48px;
}
.install-layout {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.install-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.install-deco--orb {
  width: min(420px, 90vw);
  height: auto;
  aspect-ratio: 1;
}
.install-deco--a {
  top: -160px;
  left: 50%;
  transform: translateX(-58%);
  opacity: 0.9;
}
.install-deco--b {
  bottom: -180px;
  right: 50%;
  transform: translateX(52%);
  opacity: 0.85;
}
.install-page .install-deco--b {
  bottom: -200px;
  opacity: 0.32;
  -webkit-mask-image: radial-gradient(circle at 58% 36%, #000 0%, #000 42%, transparent 72%);
  mask-image: radial-gradient(circle at 58% 36%, #000 0%, #000 42%, transparent 72%);
}
.install-deco--grid {
  position: absolute;
  inset: -32px -40px -48px -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  max-width: none;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 72% 58% at 50% 42%, #000 18%, transparent 72%);
}
.install-page .install-deco--grid {
  inset: -32px -40px -28px -40px;
  opacity: 0.32;
}
.install-page .install-brand {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.install-logo-img {
  max-width: min(308px, 88vw);
  max-height: 152px;
}
.install-card {
  width: 100%;
  margin-bottom: 0;
}
.install-card-head + .install-alert {
  margin: 16px 26px 0;
}
.install-page .install-shell-fix {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(79, 140, 255, 0.28);
  background: rgba(10, 18, 36, 0.55);
}
.install-page .install-shell-fix__title {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8eeff;
}
.install-page .install-shell-fix__sub,
.install-page .install-shell-fix__note {
  margin: 0 0 10px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(200, 214, 255, 0.88);
}
.install-page .install-shell-fix__note {
  margin-top: -4px;
  color: rgba(180, 198, 240, 0.78);
}
.install-page .install-shell-fix__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}
.install-page .install-shell-fix__pre {
  flex: 1 1 220px;
  margin: 0;
  padding: 10px 12px;
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(5, 10, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  line-height: 1.45;
  color: #c8d8ff;
}
.install-page .install-shell-fix__copy {
  flex: 0 0 auto;
  align-self: center;
}
.install-page .install-shell-fix__copy.login-submit {
  width: auto;
  margin-top: 0;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
}
.install-page .install-shell-fix__copied {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: rgba(120, 220, 160, 0.95);
}
.install-card-body {
  padding: 20px 26px 28px;
}
.install-card-body--progress {
  padding-top: 12px;
}
.install-page .install-card {
  border: 1px solid rgba(79, 140, 255, 0.14);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.install-page .install-card .login-form-heading {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f0f4ff;
}
.install-page .install-lead {
  margin: 8px 0 0;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(214, 226, 255, 0.92);
  letter-spacing: 0.01em;
}
.install-page .install-field {
  gap: 8px;
}
.install-page .login-field.install-field + .login-field.install-field {
  margin-top: 12px;
}
.install-page .login-field-label {
  margin-top: 2px;
  margin-bottom: 1px;
}
.install-page .install-field .form-hint {
  margin-top: 6px;
}
.install-page .install-steam-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.install-page .install-steam-hint__link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.8rem;
}
.install-page .install-steam-hint__link:hover {
  color: #fff;
}
.install-page .install-steam-hint__link:visited {
  color: rgba(255, 255, 255, 0.92);
}
.install-page .install-steam-hint__appid {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
}
.install-page .login-field-wrap select.install-locale-select,
.install-page .login-field-wrap.install-field-wrap--select select {
  width: 100%;
  padding: 12px 14px 12px 44px;
  border-radius: 12px;
  border: 1px solid rgba(58, 82, 130, 0.65);
  background: rgba(10, 16, 32, 0.85);
  color: var(--text);
  font: inherit;
  font-size: 0.9375rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2398a9cf'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m19 9-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.install-page .login-field-wrap select.install-locale-select:hover,
.install-page .login-field-wrap.install-field-wrap--select select:hover {
  border-color: rgba(90, 120, 190, 0.75);
}
.install-page .login-field-wrap select.install-locale-select:focus,
.install-page .login-field-wrap.install-field-wrap--select select:focus {
  outline: none;
  border-color: rgba(79, 140, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.18);
}
.install-form-grid .form-grid--nested.install-plugin-mysql-grid {
  gap: 14px;
}
.install-lang-row {
  padding-bottom: 4px;
}
.install-panel-db-tip {
  display: grid;
  grid-template-columns: 8px 1fr;
  column-gap: 10px;
  align-items: start;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(203, 213, 245, 0.88);
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.install-panel-db-tip > span:last-child {
  min-width: 0;
}
.install-panel-db-tip__dot {
  width: 8px;
  height: 8px;
  margin-top: 0.38em;
  border-radius: 50%;
  background: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.22);
}
@supports (height: 1lh) {
  .install-panel-db-tip__dot {
    margin-top: calc(0.5lh - 4px);
  }
}
.install-network-tip {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
  align-items: start;
  margin: 0 0 14px;
  padding: 11px 13px;
  border-radius: 11px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(198, 210, 245, 0.92);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.22);
}
.install-network-tip > span:last-child {
  min-width: 0;
}
.install-network-tip__ico {
  display: flex;
  flex-shrink: 0;
  margin-top: 0.2em;
  color: #7eb6ff;
  opacity: 0.95;
}
@supports (height: 1lh) {
  .install-network-tip__ico {
    margin-top: calc(0.5lh - 9px);
  }
}
.install-info-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.1);
  color: #cfe8ff;
  font-size: 0.92rem;
  line-height: 1.5;
}
.install-info-banner--warning {
  border-color: rgba(251, 191, 36, 0.45);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(245, 158, 11, 0.06));
  color: #fde9c4;
}
.install-info-banner--warning .install-info-banner__ico {
  color: #fbbf24;
}
.install-info-banner--warning .install-info-banner__text strong {
  color: #fff7ed;
  letter-spacing: 0.02em;
}
.install-info-banner__ico {
  display: flex;
  flex-shrink: 0;
  margin-top: 0.2em;
  color: #7eb6ff;
}
@supports (height: 1lh) {
  .install-info-banner__ico {
    margin-top: calc(0.5lh - 11px);
  }
}
.install-info-banner__text strong {
  display: block;
  margin-bottom: 8px;
  color: #e8f2ff;
}
.install-info-banner__text p {
  margin: 0.55em 0 0;
}
.install-info-banner__text p:first-of-type {
  margin-top: 0;
}
.install-form-grid {
  gap: 26px;
  margin-top: 8px;
}
.install-form-section:not(:first-child) {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.install-form-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #d8e4ff;
}
.install-form-section__title svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #93b4ff;
  opacity: 0.95;
}
.install-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.install-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}
.install-submit.login-submit {
  margin-top: 0;
}
.install-progress {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(58, 90, 150, 0.45);
  border-radius: 16px;
  padding: 18px 18px 16px;
  margin: 0;
  background: linear-gradient(165deg, rgba(12, 20, 40, 0.92) 0%, rgba(6, 12, 26, 0.88) 100%);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.08) inset,
    0 18px 40px rgba(0, 0, 0, 0.35);
}
.install-progress__accent {
  display: block;
  height: 3px;
  margin: -18px -18px 16px;
  width: calc(100% + 36px);
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #22d3ee, #3b82f6, #6366f1, #a855f7);
  opacity: 0.92;
}
.install-progress-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.install-progress-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.12), rgba(99, 102, 241, 0.18));
  border: 1px solid rgba(100, 140, 220, 0.4);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
}
.install-progress-ico {
  width: 26px;
  height: 26px;
  color: #93c5fd;
  flex-shrink: 0;
}
.install-progress-head__text {
  min-width: 0;
  flex: 1;
}
.install-progress-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #e8f0ff;
  line-height: 1.3;
}
.install-progress-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(148, 176, 228, 0.92);
}
.install-step-text {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--muted);
}
.install-progress-bar.progress-bar {
  height: 14px;
  margin: 10px 0 12px;
  background: rgba(20, 32, 56, 0.9);
  border: 1px solid rgba(58, 82, 130, 0.5);
}
.install-progress-pct {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #a8c4ff;
}
.install-duration-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.42);
  background: linear-gradient(125deg, rgba(251, 191, 36, 0.14), rgba(99, 102, 241, 0.06));
  color: #fde9c4;
  font-size: 0.88rem;
  line-height: 1.5;
}
.install-duration-banner__ico {
  flex-shrink: 0;
  margin-top: 2px;
  color: #fbbf24;
}
.install-duration-banner__text {
  margin: 0;
}
.install-stalled-hint {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
  border: 1px solid rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.1);
  color: #fecaca;
}
.install-log-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8aa4d4;
}
.install-log-toolbar__ico {
  display: flex;
  color: #67e8f9;
  opacity: 0.9;
}
.install-log-toolbar__title {
  flex: 1;
}
.install-log-toolbar__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55);
  animation: installLivePulse 1.6s ease-out infinite;
}
@keyframes installLivePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(34, 211, 238, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
  }
}
.install-progress-bar.progress-bar span {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #6366f1, #a855f7);
  background-size: 200% 100%;
  transition: width 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.45);
}
.install-progress-fill--active {
  animation: installBarShimmer 2.2s linear infinite;
}
@keyframes installBarShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.install-step-text.install-step-text--flash {
  animation: installStepFlash 0.55s ease-out;
}
@keyframes installStepFlash {
  0% {
    opacity: 0.35;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.install-live-error {
  margin-top: 10px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.install-progress-note {
  margin-top: 16px;
  margin-bottom: 0;
}
.install-progress-note--card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: linear-gradient(125deg, rgba(16, 185, 129, 0.12), rgba(34, 211, 238, 0.06));
  color: #bbf7d0;
}
.install-progress-note__ico {
  flex-shrink: 0;
  margin-top: 1px;
  color: #34d399;
  display: flex;
}
.install-progress-note__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(209, 250, 229, 0.95);
}
.install-abort-form {
  margin-top: 14px;
}
.install-abort-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.install-abort-btn__ico {
  display: flex;
  color: rgba(147, 197, 253, 0.95);
}
.install-abort-dialog {
  max-width: min(420px, calc(100vw - 2rem));
  padding: 0;
  border: none;
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  box-shadow: none;
}
.install-abort-dialog::backdrop {
  background: rgba(4, 8, 18, 0.72);
  backdrop-filter: blur(6px);
}
.install-abort-dialog__inner {
  padding: 1.45rem 1.4rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(90, 130, 210, 0.45);
  background: linear-gradient(165deg, rgba(18, 28, 48, 0.98) 0%, rgba(10, 16, 32, 0.99) 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.install-abort-dialog__hero {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.install-abort-dialog__icon-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.18), rgba(99, 102, 241, 0.22));
  border: 1px solid rgba(120, 165, 255, 0.38);
  color: #93c5fd;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}
.install-abort-dialog__hero-svg {
  width: 28px;
  height: 28px;
}
.install-abort-dialog__hero-text {
  min-width: 0;
  flex: 1;
}
.install-abort-dialog__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #e8f0ff;
  line-height: 1.35;
}
.install-abort-dialog__kicker {
  margin: 6px 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(140, 170, 220, 0.88);
  line-height: 1.35;
}
.install-abort-dialog__body {
  margin: 0 0 1.15rem;
  padding: 12px 12px 12px 14px;
  border-radius: 10px;
  border-left: 3px solid rgba(99, 102, 241, 0.55);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(200, 218, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}
.install-abort-dialog__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.install-abort-dialog__btn {
  min-width: 0;
  margin: 0;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.install-abort-dialog__btn-ico {
  display: flex;
  flex-shrink: 0;
  opacity: 0.92;
}
.install-abort-dialog__btn--cancel {
  border: 1px solid rgba(120, 150, 210, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: #c8d8f8;
}
.install-abort-dialog__btn--cancel:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(140, 170, 230, 0.45);
}
.install-abort-dialog__btn--confirm {
  border: none;
  box-shadow: 0 4px 18px rgba(79, 140, 255, 0.4);
}
.install-abort-dialog__btn--confirm .install-abort-dialog__btn-ico {
  color: rgba(255, 255, 255, 0.95);
}
.install-connection-result:not(.hidden) {
  margin-top: 4px;
}
@media (max-width: 540px) {
  .install-form-actions {
    grid-template-columns: 1fr;
  }
  .install-logo-img {
    max-height: 128px;
  }
  .install-deco--a {
    transform: translateX(-50%);
    left: 40%;
  }
  .install-abort-dialog__actions {
    grid-template-columns: 1fr;
  }
  .install-abort-dialog__btn {
    width: 100%;
  }
}

/* Install form light refresh: subtler card surfaces, refined typography, tighter spacing. */
.install-page .install-card {
  border-radius: 22px;
}
.install-page .install-card-head {
  padding: 22px 24px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.install-page .install-card-head .login-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(79, 140, 255, 0.18) 0%, rgba(99, 102, 241, 0.12) 100%);
  border: 1px solid rgba(99, 102, 241, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.install-page .install-card-head .login-card-icon {
  width: 22px;
  height: 22px;
  color: #c8d6ff;
}
.install-page .install-card .login-form-heading {
  font-size: 1.08rem;
  letter-spacing: -0.018em;
}
.install-page .install-lead {
  margin-top: 6px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(196, 211, 244, 0.78);
}
.install-page .install-card-body {
  padding: 20px 22px 24px;
}
.install-page .install-form-grid {
  gap: 18px;
  margin-top: 4px;
}
.install-page .install-form-section {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.42) 0%, rgba(11, 18, 35, 0.32) 100%);
  border: 1px solid rgba(99, 130, 206, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}
.install-page .install-form-section:not(:first-child) {
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(99, 130, 206, 0.14);
}
.install-page .install-form-section.install-lang-row {
  background: transparent;
  border: none;
  padding: 0;
}
.install-page .install-form-section__title {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e1ebff;
}
.install-page .install-form-section__title svg {
  width: 18px;
  height: 18px;
  color: #9bb6ff;
  padding: 4px;
  border-radius: 8px;
  background: rgba(99, 130, 206, 0.18);
  border: 1px solid rgba(99, 130, 206, 0.22);
  box-sizing: content-box;
}
.install-page .install-panel-db-tip,
.install-page .install-network-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px dashed rgba(148, 180, 255, 0.18);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(214, 226, 255, 0.78);
}
.install-page .install-panel-db-tip__dot {
  flex-shrink: 0;
  margin-top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6f9bff;
  box-shadow: 0 0 0 3px rgba(111, 155, 255, 0.18);
}
.install-page .install-network-tip__ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: -1px;
  border-radius: 7px;
  background: rgba(99, 130, 206, 0.18);
  border: 1px solid rgba(99, 130, 206, 0.22);
  color: #9bb6ff;
}
.install-page .install-info-banner {
  border-radius: 14px;
}
.install-page .install-info-banner--warning {
  background: linear-gradient(180deg, rgba(252, 211, 77, 0.08) 0%, rgba(252, 211, 77, 0.04) 100%);
  border: 1px solid rgba(252, 211, 77, 0.22);
}
.install-page .install-form-section .login-field-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(214, 226, 255, 0.62);
}
.install-page .install-form-section input,
.install-page .install-form-section select {
  font-size: 0.9rem;
}
.install-page .install-form-section .form-hint {
  font-size: 0.74rem;
  color: rgba(196, 211, 244, 0.6);
}
.install-page .install-form-actions {
  margin-top: 4px;
  gap: 10px;
}
