:root {
  --man-ink: #142033;
  --man-muted: #5b6b7c;
  --man-coral: #e25c4a;
  --man-blue: #1a6bb5;
  --man-teal: #0f766e;
  --man-bg: #eef2f6;
  --man-surface: #ffffff;
  --man-border: #d7e0ea;
  --man-sidebar: #102033;
  --man-sidebar-2: #18304a;
  --man-radius: 14px;
  --man-font: "DM Sans", system-ui, sans-serif;
  --man-display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }

body.man-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--man-font);
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(26, 107, 181, 0.10), transparent 55%),
    radial-gradient(700px 360px at -5% 100%, rgba(226, 92, 74, 0.08), transparent 50%),
    var(--man-bg);
  color: var(--man-ink);
}

.man-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.man-sidebar {
  background: linear-gradient(180deg, var(--man-sidebar) 0%, var(--man-sidebar-2) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
}

.man-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  padding: 0.35rem 0.5rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.man-sidebar-logo {
  height: 28px;
  width: auto;
  display: block;
}

.man-sidebar-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(226, 92, 74, 0.95);
  color: #fff;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.man-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.man-side-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 160ms ease, color 160ms ease;
}

.man-side-link:hover,
.man-side-link.aktif {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.man-side-ico {
  display: inline-flex;
  opacity: 0.9;
}

.man-sidebar-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.man-sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.35rem;
}

.man-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--man-blue), var(--man-coral));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.man-sidebar-user-name {
  font-weight: 650;
  font-size: 0.9rem;
  line-height: 1.2;
}

.man-sidebar-user-meta {
  font-size: 0.75rem;
  opacity: 0.65;
}

.man-side-logout {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.man-side-logout:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.man-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.man-content-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.6rem 1.75rem 0.85rem;
  flex-wrap: wrap;
}

.man-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--man-muted);
}

.man-content-title {
  margin: 0;
  font-family: var(--man-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--man-ink);
}

.man-content-body {
  padding: 0.5rem 1.75rem 2rem;
}

.man-lede {
  color: var(--man-muted);
  margin: 0 0 1.1rem;
  max-width: 52rem;
}

.man-panel {
  background: var(--man-surface);
  border: 1px solid var(--man-border);
  border-radius: var(--man-radius);
  box-shadow: 0 10px 30px rgba(20, 32, 51, 0.05);
  overflow: hidden;
}

.man-panel-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.45rem 0.85rem;
  border-bottom: 1px solid var(--man-border);
  background: linear-gradient(180deg, #fbfcfe 0%, #f5f8fb 100%);
}

.man-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  flex: 1;
}

.man-filter-search {
  flex: 1 1 180px;
  max-width: 280px;
}

.man-filter-select {
  max-width: 150px;
}

.man-panel-toolbar .form-control,
.man-panel-toolbar .form-select {
  min-height: 32px;
  padding: 0.25rem 0.55rem;
  font-size: 0.85rem;
}

.man-panel-toolbar .man-btn {
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  border-radius: 8px;
}

.man-panel-meta {
  color: var(--man-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.man-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.man-sayfalama {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.85rem;
  padding: 0.55rem 0.85rem;
  border-top: 1px solid var(--man-border);
  background: #fbfcfe;
}

.man-sayfalama-ozet {
  color: var(--man-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.man-sayfalama-sag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}

.man-sayfalama-boyut {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: var(--man-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.man-sayfalama-boyut .form-select {
  width: auto;
  min-width: 4.25rem;
  min-height: 30px;
  padding: 0.15rem 1.75rem 0.15rem 0.45rem;
  font-size: 0.8rem;
}

.man-sayfalama-dugmeler {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.man-sayfalama-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  height: 30px;
  padding: 0 0.5rem;
  border: 1px solid var(--man-border);
  border-radius: 8px;
  background: #fff;
  color: var(--man-text);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}

.man-sayfalama-btn:hover {
  background: #f3f6f9;
  color: var(--man-text);
}

.man-sayfalama-btn--aktif {
  background: #a70202;
  border-color: #a70202;
  color: #fff;
  pointer-events: none;
}

.man-sayfalama-btn--kilit {
  opacity: 0.45;
  pointer-events: none;
}

.man-sayfalama-nokta {
  color: var(--man-muted);
  font-size: 0.78rem;
  padding: 0 0.1rem;
}

.man-table {
  margin: 0;
  width: 100%;
}

.man-table thead th {
  background: #f7fafc;
  color: #6b7c8f;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-bottom-color: var(--man-border);
  white-space: nowrap;
  padding: 0.85rem 1rem;
}

.man-table tbody td {
  padding: 0.95rem 1rem;
  vertical-align: middle;
  border-color: #eef2f6;
}

.man-table tbody tr:hover {
  background: #f8fbff;
}

.man-table-aboneler thead th {
  padding: 0.45rem 0.7rem;
  font-size: 0.68rem;
}

.man-table-aboneler tbody td {
  padding: 0.35rem 0.7rem;
  line-height: 1.25;
}

.man-table-aboneler tbody tr {
  transition: background-color 120ms ease;
}

.man-table-aboneler.table > tbody > tr:hover > * {
  --bs-table-bg-state: #d9ebfb;
  background-color: #d9ebfb;
  box-shadow: inset 0 0 0 9999px #d9ebfb;
}

.man-table-aboneler .man-firma {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

.man-table-aboneler .man-pill {
  padding: 0.12rem 0.45rem;
  font-size: 0.7rem;
}

.man-table-aboneler .man-btn-sm {
  padding: 0.22rem 0.5rem;
  font-size: 0.76rem;
}

.man-table-aboneler .man-btn-icon {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
}

.man-table-aboneler .man-kalan {
  font-size: 0.8rem;
}

.man-table-aboneler .man-donem {
  font-size: 0.8rem;
}

.man-table-aboneler .man-row-actions {
  gap: 0.25rem;
}

.man-table-aboneler .man-col-abone {
  min-width: 14rem;
  width: 40%;
}

.man-table-aboneler .man-col-mukellef,
.man-table-aboneler .man-col-durum {
  white-space: nowrap;
  width: 1%;
}

.man-table-aboneler .man-col-donem {
  white-space: nowrap;
  width: 1%;
}

.man-table-aboneler .man-col-kalan {
  white-space: nowrap;
  width: 1%;
}

.man-kalan {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--man-ink);
}

.man-kalan--yakin {
  color: #9a5b10;
}

.man-kalan--gecmis {
  color: #b42318;
}

.man-btn-icon {
  width: 2rem;
  padding-left: 0;
  padding-right: 0;
}

.man-detay-popup {
  font-family: var(--man-font);
}

.man-detay-grid {
  display: grid;
  gap: 0.45rem;
  text-align: left;
  max-height: min(60vh, 420px);
  overflow: auto;
  padding-right: 0.25rem;
}

.man-detay-satir {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #eef2f6;
  font-size: 0.88rem;
}

.man-detay-satir span {
  color: var(--man-muted);
  font-weight: 600;
}

.man-detay-satir strong {
  color: var(--man-ink);
  font-weight: 650;
  word-break: break-word;
}

.man-kullanici-popup .swal2-html-container {
  margin-top: 0.35rem;
  overflow-x: hidden;
}

.man-kullanici-popup.swal2-popup {
  width: min(900px, 96vw) !important;
}

.man-kullanici-popup .man-kullanici-tablo,
.man-kullanici-popup .man-kullanici-tablo td,
.man-kullanici-popup .man-kullanici-tablo th {
  word-break: normal;
  overflow-wrap: normal;
}

.man-kullanici-ozet {
  text-align: left;
  color: var(--man-muted);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.man-kullanici-bos {
  text-align: center;
  color: var(--man-muted);
  font-size: 0.9rem;
  padding: 1.25rem 0.5rem;
}

.man-kullanici-tablo-wrap {
  max-height: min(55vh, 420px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid var(--man-border);
  border-radius: 10px;
  text-align: left;
}

.man-kullanici-tablo {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: 0.82rem;
  table-layout: fixed;
}

.man-kullanici-tablo thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f7fafc;
  color: #6b7c8f;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 0.45rem 0.55rem;
  border-bottom: 1px solid var(--man-border);
  white-space: nowrap;
}

.man-kullanici-tablo th:nth-child(1),
.man-kullanici-tablo td:nth-child(1) { width: 18%; }
.man-kullanici-tablo th:nth-child(2),
.man-kullanici-tablo td:nth-child(2) { width: 26%; }
.man-kullanici-tablo th:nth-child(3),
.man-kullanici-tablo td:nth-child(3) { width: 14%; }
.man-kullanici-tablo th:nth-child(4),
.man-kullanici-tablo td:nth-child(4) { width: 16%; }
.man-kullanici-tablo th:nth-child(5),
.man-kullanici-tablo td:nth-child(5) { width: 10%; }
.man-kullanici-tablo th:nth-child(6),
.man-kullanici-tablo td:nth-child(6) { width: 16%; }

.man-kullanici-tablo td {
  padding: 0.45rem 0.55rem;
  border-bottom: 1px solid #eef2f6;
  color: var(--man-ink);
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.man-kullanici-tablo tbody tr:last-child td {
  border-bottom: none;
}

.man-abone-cell {
  min-width: 0;
}

.man-table-aboneler .man-col-islem {
  width: 1%;
  white-space: nowrap;
}

.man-abone-cell {
  min-width: 0;
}

.man-firma {
  font-weight: 650;
  color: var(--man-ink);
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.man-abone-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  margin-top: 0.3rem;
  color: var(--man-muted);
  font-size: 0.82rem;
  line-height: 1.35;
  min-width: 0;
}

.man-abone-sep {
  opacity: 0.45;
}

.man-abone-mail {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 22rem;
}

.man-donem {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-variant-numeric: tabular-nums;
  font-size: 0.88rem;
  color: var(--man-ink);
  white-space: nowrap;
}

.man-donem-ok {
  color: var(--man-muted);
}

.man-mono {
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
}

.man-row-actions {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.man-action-menu {
  min-width: 10rem;
  padding: 0.35rem;
  border: 1px solid var(--man-border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(20, 32, 51, 0.12);
}

.man-action-menu .dropdown-item {
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
}

.man-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--man-muted);
}

.man-empty strong {
  display: block;
  color: var(--man-ink);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.man-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.man-btn-sm {
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  border-radius: 8px;
}

.man-btn-primary {
  background: linear-gradient(135deg, var(--man-blue), #155a9c);
  color: #fff;
  box-shadow: 0 8px 18px rgba(26, 107, 181, 0.25);
}

.man-btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
}

.man-btn-sorgula {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: #fff;
  border-color: transparent;
  box-shadow: none;
  font-weight: 700;
  border-radius: 0 10px 10px 0;
  padding: 0.55rem 1rem;
  white-space: nowrap;
}

.input-group .man-btn-sorgula {
  z-index: 3;
}

.man-btn-sorgula:hover:not(:disabled) {
  color: #fff;
  filter: brightness(1.06);
  transform: none;
}

.man-btn-sorgula:disabled {
  opacity: 0.75;
  cursor: wait;
}

.man-btn-ghost {
  background: #fff;
  border-color: var(--man-border);
  color: var(--man-ink);
}

.man-btn-ghost:hover {
  background: #f5f8fb;
  color: var(--man-ink);
}

.man-btn-link {
  background: transparent;
  color: var(--man-blue);
  border: none;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

.man-btn-ok {
  background: #e8f7ef;
  color: #167a45;
  border-color: #c8ebd7;
}

.man-btn-warn {
  background: #fff6e8;
  color: #9a5b10;
  border-color: #f3dfb8;
}

.man-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.man-pill-ok { background: #e7f6ed; color: #157a42; }
.man-pill-muted { background: #eef2f6; color: #5b6b7c; }
.man-pill-warn { background: #fff4df; color: #9a5b10; }
.man-pill-mukellef { background: #f4ebe8; color: #8b2a2a; }

.man-surface {
  background: var(--man-surface);
  border: 1px solid var(--man-border);
  border-radius: var(--man-radius);
  box-shadow: 0 10px 30px rgba(20, 32, 51, 0.05);
}

.man-form .form-control,
.man-form .form-select {
  color: #a70202;
}

.man-form .form-control::placeholder {
  color: rgba(167, 2, 2, 0.45);
}

.man-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--man-border);
  background: #f5f8fb;
  color: var(--man-blue);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.man-help-btn:hover {
  background: #e8f1fa;
  border-color: #9ec0e0;
  color: #155a9c;
}

.man-form {
  max-width: 960px;
}

.man-form-body {
  padding: 1.35rem 1.4rem;
}

.man-form-foot {
  display: flex;
  gap: 0.6rem;
  padding: 0 1.4rem 1.35rem;
}

.man-alert {
  border-radius: 12px;
  max-width: 640px;
}

/* Login */
body.man-login-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--man-font);
  background: #8d9aaa;
  color: var(--man-ink);
}

.man-login-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  overflow: hidden;
}

.man-login-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.man-login-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
}

.man-login-wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
}

.man-login-wash--ink {
  width: 520px;
  height: 520px;
  left: -120px;
  top: -80px;
  background: #1a6bb5;
}

.man-login-wash--coral {
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -60px;
  background: #e25c4a;
}

.man-login-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  z-index: 1;
  animation: man-login-in 520ms ease both;
}

@keyframes man-login-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.man-login-hero {
  text-align: center;
  margin-bottom: 1.25rem;
}

.man-login-logo {
  width: min(188px, 78vw);
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}

.man-login-tagline {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.man-login-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.35rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.man-login-card-head {
  margin-bottom: 1.2rem;
}

.man-login-card-head h1 {
  margin: 0;
  font-family: var(--man-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--man-ink);
}

.man-login-card-head p {
  margin: 0.35rem 0 0;
  color: var(--man-muted);
  font-size: 0.92rem;
}

.man-login-field {
  margin-bottom: 0.95rem;
}

.man-login-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  color: #3d4d5e;
  margin-bottom: 0.35rem;
}

.man-login-field input {
  width: 100%;
  border: 1px solid #d5dee8;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  background: #fff;
}

.man-login-field input:focus {
  outline: none;
  border-color: #7eb0df;
  box-shadow: 0 0 0 3px rgba(26, 107, 181, 0.15);
}

.man-login-submit {
  width: 100%;
  margin-top: 0.35rem;
  border: none;
  border-radius: 11px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--man-blue), #155a9c 55%, #c85243);
  box-shadow: 0 12px 24px rgba(26, 107, 181, 0.28);
}

.man-login-submit:hover {
  filter: brightness(1.04);
}

.man-login-hint {
  margin: 0.85rem 0 0;
  text-align: center;
  color: #7a8a9a;
  font-size: 0.78rem;
}

.man-login-alert {
  color: #9b1c1c;
  background: #fff1f1;
  border: 1px solid #f3c7c7;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
}

.man-login-alert:empty { display: none; }

.man-login-foot {
  margin-top: 1.15rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.field-validation-error {
  display: block;
  color: #b42318;
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

#toast-container {
  z-index: 20000 !important;
}

#toast-container.toast-top-center {
  top: 72px;
}

#toast-container.toast-top-center > div {
  width: 40vw;
  max-width: 520px;
  opacity: 1 !important;
}

@media (max-width: 1100px) {
  .man-table-aboneler {
    min-width: 680px;
  }
}

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

  .man-sidebar {
    position: relative;
    height: auto;
    border-radius: 0 0 16px 16px;
  }

  .man-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .man-content-top,
  .man-content-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #toast-container.toast-top-center > div {
    width: 90vw;
  }
}

@media (max-width: 640px) {
  .man-table-aboneler {
    min-width: 0;
  }

  .man-table-aboneler thead {
    display: none;
  }

  .man-table-aboneler tbody tr {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--man-border);
  }

  .man-table-aboneler tbody tr:last-child {
    border-bottom: none;
  }

  .man-table-aboneler tbody td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100% !important;
    padding: 0.35rem 0;
    border: none;
    white-space: normal;
  }

  .man-table-aboneler tbody td::before {
    content: attr(data-label);
    flex: 0 0 6.5rem;
    color: var(--man-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-top: 0.15rem;
  }

  .man-table-aboneler .man-col-abone {
    display: block;
    padding-bottom: 0.65rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px dashed #e4ebf2;
  }

  .man-table-aboneler .man-col-abone::before {
    display: none;
  }

  .man-table-aboneler .man-col-islem {
    justify-content: flex-start;
    padding-top: 0.7rem;
  }

  .man-table-aboneler .man-col-islem::before {
    display: none;
  }

  .man-table-aboneler .man-row-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .man-abone-mail {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: none;
  }
}
