:root {
  --kk-bg: #07111c;
  --kk-bg-soft: #0d1724;
  --kk-panel: rgba(10, 19, 31, 0.78);
  --kk-panel-strong: rgba(12, 24, 38, 0.92);
  --kk-panel-solid: #0e1826;
  --kk-panel-highlight: rgba(19, 34, 54, 0.84);
  --kk-border: rgba(136, 169, 206, 0.16);
  --kk-border-strong: rgba(114, 196, 161, 0.34);
  --kk-text: #eef4fb;
  --kk-text-soft: #c6d5e6;
  --kk-text-muted: #8fa5be;
  --kk-accent: #66d49d;
  --kk-accent-strong: #2e8f63;
  --kk-accent-alt: #7ec8ff;
  --kk-danger: #ff6a79;
  --kk-danger-soft: rgba(255, 106, 121, 0.14);
  --kk-warn: #ffbf60;
  --kk-warn-soft: rgba(255, 191, 96, 0.16);
  --kk-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  --kk-shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.1);
  --kk-radius-xl: 28px;
  --kk-radius-lg: 20px;
  --kk-radius-md: 16px;
  --kk-radius-sm: 12px;
  --kk-content-max: 1580px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--kk-text);
  background:
    radial-gradient(circle at top left, rgba(113, 199, 158, 0.1), transparent 24%),
    radial-gradient(circle at top right, rgba(126, 200, 255, 0.1), transparent 20%),
    linear-gradient(180deg, #08111a 0%, #050c14 54%, #07111c 100%);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.kk-body {
  position: relative;
}

.kk-body-login,
.kk-body-app {
  overflow-x: hidden;
}

.kk-app {
  position: relative;
  min-height: 100vh;
}

.kk-bg-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.18;
  z-index: 0;
}

.kk-bg-orb-a {
  width: 26rem;
  height: 26rem;
  top: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(102, 212, 157, 0.28), transparent 68%);
}

.kk-bg-orb-b {
  width: 32rem;
  height: 32rem;
  right: -11rem;
  top: 7rem;
  background: radial-gradient(circle, rgba(126, 200, 255, 0.24), transparent 66%);
}

.kk-main {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--kk-content-max));
  margin: 0 auto;
  padding: 24px 0 34px;
}

.kk-content {
  padding-top: 20px;
}

.kk-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-radius: var(--kk-radius-xl);
  border: 1px solid var(--kk-border);
  background:
    linear-gradient(135deg, rgba(10, 19, 31, 0.92), rgba(11, 24, 37, 0.74)),
    rgba(10, 19, 31, 0.82);
  box-shadow: var(--kk-shadow-soft);
  position: static;
  z-index: 30;
}

.kk-topbar-left,
.kk-topbar-right,
.kk-topbar-meta,
.kk-menubar-inline,
.kk-actions,
.kk-summary,
.kk-filters,
.kk-pagination {
  min-width: 0;
}

.kk-topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.kk-brand-lockup {
  display: grid;
  gap: 5px;
}

.kk-brand-kicker,
.kk-login-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kk-accent-alt);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kk-brand-title {
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.kk-topbar-period {
  color: var(--kk-text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.kk-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.kk-mobile-menu-toggle {
  display: none;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(145, 173, 205, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: var(--kk-text);
  font-weight: 800;
  cursor: pointer;
}

.kk-mobile-menu-toggle-line {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.kk-topbar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.kk-menubar-inline {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.kk-menu-tab,
.kk-btn,
.kk-fullscreen-toggle {
  appearance: none;
  border: 1px solid transparent;
  transition:
    background-color 0.14s ease,
    border-color 0.14s ease,
    color 0.14s ease;
}

.kk-menu-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(145, 173, 205, 0.12);
  color: var(--kk-text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.kk-menu-tab:hover,
.kk-btn:hover,
.kk-fullscreen-toggle:hover {
  transform: none;
}

.kk-menu-tab.is-active,
.kk-menu-tab:hover {
  background: rgba(102, 212, 157, 0.14);
  border-color: rgba(102, 212, 157, 0.34);
  color: #f3fff8;
}

.kk-menudrop {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: none;
  min-width: min(760px, calc(100vw - 42px));
  padding: 12px;
  border-radius: var(--kk-radius-lg);
  border: 1px solid rgba(126, 200, 255, 0.14);
  background: rgba(8, 14, 23, 0.96);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  z-index: 80;
}

.kk-menudrop.open {
  display: block;
}

.kk-submenu-panel {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
}

.kk-submenu-panel.is-active {
  display: flex;
}

.kk-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--kk-text-soft);
  font-weight: 600;
}

.kk-nav-link:hover,
.kk-nav-link.is-active {
  border-color: rgba(126, 200, 255, 0.38);
  background: rgba(126, 200, 255, 0.12);
  color: #eff8ff;
}

.kk-page-intro {
  display: grid;
  gap: 8px;
  margin: 8px 0 18px;
}

.kk-page-intro h1 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.kk-page-intro p {
  margin: 0;
  max-width: 68ch;
  color: var(--kk-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.kk-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.45fr);
  gap: 18px;
}

.kk-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--kk-radius-lg);
  border: 1px solid var(--kk-border);
  background:
    linear-gradient(180deg, rgba(14, 24, 38, 0.94), rgba(10, 19, 31, 0.84)),
    var(--kk-panel);
  box-shadow: var(--kk-shadow-soft);
}

.kk-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(136, 169, 206, 0.1);
  background: linear-gradient(180deg, rgba(16, 30, 47, 0.82), rgba(10, 19, 31, 0.45));
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.kk-card-body {
  padding: 18px;
}

.kk-form {
  display: grid;
  gap: 14px;
}

.kk-form-row {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.kk-form-row-block {
  grid-template-columns: 1fr;
}

.kk-label {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--kk-text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.kk-input,
.kk-select,
textarea.kk-input {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(145, 173, 205, 0.14);
  outline: none;
  color: var(--kk-text);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.kk-select option,
.kk-select optgroup {
  background: #ffffff;
  color: #111827;
}

.kk-input::placeholder {
  color: #6d849c;
}

.kk-input:focus,
.kk-select:focus,
textarea.kk-input:focus {
  border-color: rgba(102, 212, 157, 0.5);
  box-shadow: 0 0 0 4px rgba(102, 212, 157, 0.12);
}

.kk-select[multiple] {
  min-height: 124px;
}

.kk-input-sm {
  min-width: 132px;
  max-width: 180px;
}

.kk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(145, 173, 205, 0.14);
  color: var(--kk-text);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.kk-btn-primary {
  background: linear-gradient(135deg, var(--kk-accent), #80e9b1);
  border-color: rgba(128, 233, 177, 0.45);
  color: #03210f;
  box-shadow: none;
}

.kk-btn-soft {
  background: rgba(126, 200, 255, 0.09);
  border-color: rgba(126, 200, 255, 0.18);
  color: #e8f5ff;
}

.kk-btn-warning {
  background: rgba(255, 191, 96, 0.12);
  border-color: rgba(255, 191, 96, 0.26);
  color: #ffe8bd;
}

.kk-btn-danger {
  background: rgba(255, 106, 121, 0.13);
  border-color: rgba(255, 106, 121, 0.26);
  color: #ffd9dd;
}

.kk-btn-mini {
  min-height: 36px;
  padding: 7px 11px;
  border-radius: 11px;
  font-size: 0.82rem;
}

.kk-btn-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.kk-actions,
.kk-summary,
.kk-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.kk-note,
.kk-live-note {
  margin: 0;
  color: var(--kk-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.kk-live-note {
  color: #a8d8ff;
}

.kk-badge,
.kk-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(145, 173, 205, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
}

.kk-pill {
  background: rgba(126, 200, 255, 0.08);
  color: #edf7ff;
}

.kk-badge-ok {
  background: rgba(102, 212, 157, 0.11);
  color: #d9ffea;
  border-color: rgba(102, 212, 157, 0.22);
}

.kk-badge-err {
  background: var(--kk-danger-soft);
  color: #ffe6ea;
  border-color: rgba(255, 106, 121, 0.24);
}

.kk-alert {
  padding: 12px 14px;
  border-radius: 15px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  line-height: 1.55;
}

.kk-alert-error {
  background: var(--kk-danger-soft);
  color: #ffe0e5;
  border-color: rgba(255, 106, 121, 0.26);
}

.kk-alert-warn {
  background: var(--kk-warn-soft);
  color: #ffe5b3;
  border-color: rgba(255, 191, 96, 0.22);
}

.kk-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
}

.kk-switch input {
  width: 18px;
  height: 18px;
}

.kk-table-actions.head {
  display: flex;
  justify-content: flex-end;
  margin: 4px 0 12px;
}

.kk-fullscreen-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(145, 173, 205, 0.14);
  color: var(--kk-text-soft);
  cursor: pointer;
}

.kk-table-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(145, 173, 205, 0.12);
  background: rgba(7, 14, 23, 0.46);
}

.kk-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
}

.kk-table th,
.kk-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(145, 173, 205, 0.08);
  vertical-align: top;
}

.kk-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(13, 24, 39, 0.96);
  color: #eff7ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.kk-table td {
  color: var(--kk-text-soft);
  white-space: nowrap;
}

.kk-table tbody tr {
  background: rgba(255, 255, 255, 0.01);
}

.kk-table tbody tr:hover {
  background: rgba(126, 200, 255, 0.045);
}

.kk-table td .kk-actions {
  min-width: 220px;
}

.kk-inline {
  display: inline-flex;
}

.kk-inline-editable {
  cursor: pointer;
}

.kk-inline-editable:hover {
  color: #ffffff;
}

.kk-row-warning {
  background: rgba(255, 191, 96, 0.09) !important;
}

.kk-row-danger {
  background: rgba(255, 106, 121, 0.08) !important;
}

.kk-row-muted {
  opacity: 0.58;
}

.kk-group-header td {
  background: rgba(102, 212, 157, 0.09);
  color: #effff7;
  font-weight: 800;
}

.kk-group-sep td {
  height: 12px;
  border-bottom: 0;
  background: transparent;
}

.kk-pagination {
  margin-top: 14px;
  justify-content: space-between;
}

.kk-col-toggle {
  border-radius: 14px;
  border: 1px solid rgba(145, 173, 205, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
}

.kk-col-toggle summary {
  cursor: pointer;
  color: var(--kk-text-soft);
  font-weight: 700;
}

.kk-col-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--kk-text-muted);
}

.kk-col-resizable {
  position: relative;
  padding-right: 16px !important;
}

.kk-col-grip {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 100%;
  cursor: col-resize;
}

.kk-col-grip::after {
  content: "";
  position: absolute;
  top: 28%;
  bottom: 28%;
  right: 4px;
  width: 2px;
  border-radius: 999px;
  background: rgba(143, 165, 190, 0.8);
}

.kk-col-grip:hover::after {
  background: var(--kk-accent-alt);
}

.kk-resizing,
.kk-resizing * {
  cursor: col-resize !important;
  user-select: none !important;
}

.kk-table-search {
  margin-bottom: 12px;
}

.kk-invalid {
  border-color: rgba(255, 106, 121, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(255, 106, 121, 0.12) !important;
}

.kk-field-error {
  margin-top: 6px;
  color: #ffd7dc;
  font-size: 0.8rem;
  font-weight: 700;
}

.kk-hisse-rows {
  display: grid;
  gap: 12px;
}

.kk-hisse-row {
  display: grid;
  gap: 12px;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  align-items: stretch;
}

.kk-hayir-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(260px, 2.3fr) minmax(140px, 0.8fr) minmax(90px, 0.58fr) minmax(140px, 0.9fr) auto;
  align-items: center;
}

.kk-hisse-row > .kk-input,
.kk-hisse-row > .kk-select {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
}

.kk-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 6, 12, 0.7);
  backdrop-filter: none;
}

.kk-modal.open {
  display: flex;
}

.kk-modal-card {
  width: min(820px, 100%);
  max-height: min(86vh, 980px);
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(126, 200, 255, 0.16);
  background: rgba(9, 17, 28, 0.96);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  padding: 18px;
}

.kk-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.kk-modal-title {
  font-size: 1.05rem;
  font-weight: 800;
}

.kk-modal-muted {
  padding: 12px 0;
  color: var(--kk-text-muted);
}

.kk-modal-results {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.kk-modal-item {
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(145, 173, 205, 0.12);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.kk-modal-item:hover {
  border-color: rgba(126, 200, 255, 0.34);
  background: rgba(126, 200, 255, 0.09);
}

.kk-report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.kk-report-card {
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(145, 173, 205, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.kk-report-title {
  margin-bottom: 8px;
  color: #eaf7ff;
  font-weight: 800;
}

.kk-report-line {
  margin: 4px 0;
  color: var(--kk-text-muted);
  font-size: 0.88rem;
}

.kk-date-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.kk-table-fullscreen {
  position: fixed !important;
  inset: 14px !important;
  z-index: 14000 !important;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(126, 200, 255, 0.18);
  background: rgba(5, 10, 18, 0.98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  max-height: none !important;
}

.kk-fullscreen-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(145, 173, 205, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--kk-text);
  cursor: pointer;
}

.kk-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  position: relative;
}

.kk-login-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(102, 212, 157, 0.12), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(126, 200, 255, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(6, 12, 20, 0.08), rgba(6, 12, 20, 0.42));
}

.kk-login-card {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(145, 173, 205, 0.14);
  background: linear-gradient(180deg, rgba(12, 23, 36, 0.94), rgba(8, 14, 24, 0.9));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.kk-login-header {
  display: grid;
  gap: 8px;
}

.kk-login-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.kk-login-sub {
  color: var(--kk-text-soft);
  font-size: 1rem;
  font-weight: 600;
}

.kk-login-copy {
  color: var(--kk-text-muted);
  line-height: 1.65;
}

.kk-table-tools {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.kk-quick-search {
  width: 100%;
}

.kk-no-toggle,
.kk-no-sort {
  white-space: nowrap;
}

.kk-reset {
  margin-left: auto;
}

.kk-main,
.kk-content,
.kk-grid,
.kk-card,
.kk-card-body,
.kk-form,
.kk-form-row,
.kk-actions,
.kk-filters,
.kk-table-wrap {
  min-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1180px) {
  .kk-main {
    width: min(calc(100% - 22px), var(--kk-content-max));
    padding-top: 18px;
  }

  .kk-topbar {
    padding: 18px;
  }

  .kk-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .kk-main {
    width: min(calc(100% - 18px), var(--kk-content-max));
  }

  .kk-topbar {
    position: static;
    border-radius: 24px;
    padding: 16px;
  }

  .kk-topbar-right,
  .kk-topbar-meta {
    width: 100%;
    justify-content: flex-start;
  }

  .kk-mobile-menu-toggle {
    display: inline-flex;
  }

  .kk-menubar-inline {
    width: 100%;
    display: none;
    overflow: hidden;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(145, 173, 205, 0.12);
    background: rgba(7, 14, 23, 0.78);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .kk-menubar-inline.is-mobile-open {
    display: flex;
  }

  .kk-menu-tab {
    width: 100%;
    justify-content: flex-start;
  }

  .kk-menudrop {
    position: static;
    min-width: 100%;
    width: 100%;
    margin-top: 0;
    padding: 10px;
    border-radius: 16px;
    box-shadow: none;
  }

  .kk-submenu-panel {
    flex-direction: column;
  }

  .kk-nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .kk-form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .kk-label {
    min-height: auto;
  }

  .kk-hisse-row,
  .kk-hayir-row {
    grid-template-columns: 1fr;
  }

  .kk-table td,
  .kk-table th {
    white-space: normal;
  }

  .kk-table td .kk-actions {
    min-width: 0;
  }

  .kk-pagination {
    justify-content: flex-start;
  }

  .kk-topbar,
  .kk-card,
  .kk-login-card,
  .kk-menubar-inline,
  .kk-menudrop,
  .kk-modal-card {
    backdrop-filter: none;
  }
}

@media (max-width: 640px) {
  .kk-main {
    width: min(calc(100% - 14px), var(--kk-content-max));
    padding-top: 14px;
  }

  .kk-topbar {
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
  }

  .kk-brand-title {
    font-size: 1.28rem;
  }

  .kk-page-intro h1 {
    font-size: 1.65rem;
  }

  .kk-card-header,
  .kk-card-body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .kk-filters,
  .kk-actions,
  .kk-summary {
    align-items: stretch;
  }

  .kk-btn,
  .kk-fullscreen-toggle {
    width: 100%;
  }

  .kk-topbar-meta {
    display: grid;
    width: 100%;
  }

  .kk-pagination {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .kk-login-card {
    padding: 22px 18px;
    border-radius: 24px;
  }
}
