@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ink: #07120f;
  --muted: #51615c;
  --soft: #6f7e78;
  --paper: #f5f8f4;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-solid: #ffffff;
  --carbon: #07120f;
  --carbon-2: #0c1c18;
  --teal: #0f766e;
  --teal-2: #11998e;
  --cyan: #0e7490;
  --lime: #c8f46a;
  --mist: #e8f1ef;
  --line: rgba(15, 118, 110, 0.18);
  --line-strong: rgba(7, 18, 15, 0.14);
  --shadow: 0 30px 90px rgba(7, 18, 15, 0.12);
  --shadow-soft: 0 18px 50px rgba(15, 118, 110, 0.12);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  background:
    radial-gradient(circle at 9% 19%, rgba(4, 184, 174, 0.23), transparent 24rem),
    radial-gradient(circle at 87% 8%, rgba(200, 244, 106, 0.2), transparent 26rem),
    linear-gradient(135deg, #f9fbf7 0%, #edf5f4 44%, #f7faf4 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 18, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 18, 15, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.72) 36% 37%, transparent 37% 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.92), transparent 32rem);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  margin-top: 18px;
}

.app-header-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  min-height: 56px;
  padding: 4px 10px 4px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(8, 17, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(8, 17, 15, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 92px;
  margin-left: 4px;
}

.brand-image img {
  width: 82px;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 6px;
}

.nav-links > a:not(.btn),
.header-actions > a:not(.btn),
.nav-dropdown-toggle {
  min-height: auto;
  padding: 10px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #41524d;
  background: transparent;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 500ms var(--ease), color 500ms var(--ease), background 500ms var(--ease);
}

.nav-links > a:not(.btn):hover,
.header-actions > a:not(.btn):hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--ink);
  background: rgba(15, 118, 110, 0.08);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 252px;
  padding: 10px;
  display: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 17, 15, 0.08);
  box-shadow: 0 20px 48px rgba(8, 17, 15, 0.14);
  backdrop-filter: blur(10px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  gap: 6px;
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  border-radius: 12px;
  color: #2f433d;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 13px;
  transition: transform 300ms var(--ease), background 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease);
}

.nav-dropdown-menu a:hover {
  color: #155e56;
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.22);
  transform: translateX(2px);
}

.account-dropdown {
  padding-bottom: 0;
  margin-bottom: 0;
}

.account-dropdown-menu {
  min-width: 248px;
}

.account-user-label {
  display: block;
  margin: 2px 2px 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(14, 124, 114, 0.08);
  color: #1e3d37;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-dropdown-menu form {
  margin: 0;
}

.account-link-button {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #2f433d;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.account-link-button:hover {
  color: #155e56;
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.22);
  transform: translateX(2px);
}

.account-link-logout {
  color: #b42318;
}

.account-link-logout:hover {
  color: #8f1f13;
  background: rgba(239, 68, 68, 0.09);
  border-color: rgba(239, 68, 68, 0.22);
}

[data-auth-actions] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta,
[data-auth-actions] a:last-child {
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
  background: linear-gradient(135deg, #0b1f1c, #0e7c72) !important;
  color: #ffffff !important;
  padding-inline: 16px !important;
  box-shadow: 0 10px 24px rgba(8, 17, 15, 0.18);
}

.app-header .nav-links > .btn,
.app-header .nav-cta {
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: clamp(28px, 5vw, 72px) auto 84px;
}

.auth-container {
  width: min(560px, calc(100% - 40px));
}

.auth-panel h1 {
  margin-top: 0;
  margin-bottom: 6px;
}

.auth-title-center {
  text-align: center;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #b91c1c;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  margin-bottom: 8px;
}

.auth-error[hidden] {
  display: none;
}

.auth-panel .btn-google {
  margin-top: 14px;
}

.auth-divider {
  margin: 16px 0 12px;
  text-align: center;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.auth-panel .auth-form {
  margin-top: 8px;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
  color: #324640;
  font-size: 13px;
  line-height: 1.45;
}

.consent-row input[type="checkbox"] {
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin-top: 2px;
  padding: 0;
  border-radius: 4px;
}

.consent-row a {
  color: #0f766e;
  font-weight: 800;
}

.consent-row.optional {
  color: #4c615b;
}

.legal-note {
  margin: 2px 0 6px;
  color: #556a64;
  font-size: 12px;
  line-height: 1.5;
}

.legal-note a {
  color: #0f766e;
  font-weight: 800;
}

.auth-legal-links {
  margin: 14px 0 0;
  text-align: center;
  color: #5a6f69;
  font-size: 12px;
}

.auth-legal-links a {
  color: #2b5e55;
  font-weight: 700;
}

.panel {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 8% 0%, rgba(200, 244, 106, 0.12), transparent 18rem);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  animation: rise 820ms var(--ease) both;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(15, 118, 110, 0.09);
  border-radius: 28px;
}

.panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 5vw, 72px);
  width: 190px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.22);
}

.panel > * {
  position: relative;
  z-index: 1;
}

.title-row {
  max-width: 840px;
}

.title-row h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 5.2vw, 72px);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.panel p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

h3,
h4 {
  margin: 28px 0 14px;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}

h4 {
  font-size: 18px;
}

.stepper {
  margin: 28px 0 28px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.step {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #5b6d67;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: transform 520ms var(--ease), background 520ms var(--ease), color 520ms var(--ease), box-shadow 520ms var(--ease);
}

.step.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--carbon), var(--teal));
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.24);
  transform: translateY(-1px);
}

.card-grid,
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pick-card {
  position: relative;
  min-height: 86px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 247, 0.86)),
    radial-gradient(circle at 0% 0%, rgba(200, 244, 106, 0.1), transparent 12rem);
  box-shadow: 0 16px 38px rgba(7, 18, 15, 0.06);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
  transition: transform 580ms var(--ease), border-color 580ms var(--ease), background 580ms var(--ease), box-shadow 580ms var(--ease), color 580ms var(--ease);
}

.pick-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.22);
  box-shadow: 0 0 0 7px rgba(15, 118, 110, 0.08);
  transition: background 580ms var(--ease), box-shadow 580ms var(--ease), transform 580ms var(--ease);
}

.pick-card:hover {
  border-color: rgba(15, 118, 110, 0.34);
  box-shadow: 0 24px 58px rgba(15, 118, 110, 0.13);
  transform: translateY(-3px);
}

.pick-card.selected,
.pick-card.active,
.pick-card[aria-pressed="true"] {
  color: #ffffff;
  border-color: rgba(15, 118, 110, 0.1);
  background:
    radial-gradient(circle at 12% 12%, rgba(200, 244, 106, 0.25), transparent 18rem),
    linear-gradient(135deg, #06201b, var(--teal));
  box-shadow: 0 28px 62px rgba(15, 118, 110, 0.28);
}

.pick-card.selected::after,
.pick-card.active::after,
.pick-card[aria-pressed="true"]::after {
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(200, 244, 106, 0.18);
  transform: scale(1.1);
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease), background 520ms var(--ease), color 520ms var(--ease), opacity 520ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.btn-primary {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 244, 106, 0.34), transparent 10rem),
    linear-gradient(135deg, var(--carbon), var(--teal));
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 24px 54px rgba(15, 118, 110, 0.31);
}

.btn-muted {
  color: #20342f;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(7, 18, 15, 0.06);
}

.btn-muted:hover {
  background: rgba(232, 241, 239, 0.9);
}

.btn-danger {
  color: #fff;
  background: linear-gradient(135deg, #7f1d1d, #ef4444);
}

.btn-google {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(8, 17, 15, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 248, 0.92));
  color: #1e2e2a;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(7, 18, 15, 0.08);
  justify-content: center;
  gap: 12px;
  padding-inline: 18px;
}

.btn-google .google-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.btn-google:hover {
  border-color: rgba(15, 118, 110, 0.34);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.14);
}

.btn-google:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.18), 0 16px 36px rgba(15, 118, 110, 0.14);
}

.field {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.field label {
  color: #25342f;
  font-weight: 900;
}

.inline-link {
  color: #2f5a52;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.inline-link:hover {
  color: var(--teal);
  text-decoration: underline;
}

.toggle-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 6px;
  color: #4c615b;
  font-size: 13px;
  font-weight: 700;
  user-select: none;
  cursor: pointer;
}

.toggle-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-ui {
  position: relative;
  width: 40px;
  height: 24px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.42);
  border: 1px solid rgba(8, 17, 15, 0.14);
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}

.toggle-ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(8, 17, 15, 0.2);
  transition: transform 220ms var(--ease);
}

.toggle-row input:checked + .toggle-ui {
  background: rgba(14, 124, 114, 0.9);
  border-color: rgba(14, 124, 114, 0.9);
}

.toggle-row input:checked + .toggle-ui::after {
  transform: translateX(16px);
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: border-color 420ms var(--ease), box-shadow 420ms var(--ease), background 420ms var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 118, 110, 0.48);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

textarea {
  line-height: 1.65;
  resize: vertical;
}

#result-box,
#decision-hint {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: #30443e;
  background: rgba(255, 255, 255, 0.68);
}

#decision-hint:empty {
  display: none;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 118, 110, 0.11);
  text-align: left;
}

th {
  color: #31443f;
  background: rgba(232, 241, 239, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tr:last-child td {
  border-bottom: 0;
}

.creator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.creator-grid.build {
  grid-template-columns: 320px minmax(0, 1fr);
}

.cat-search-box {
  margin-bottom: 12px;
}

.cat-scroll,
.selected-list {
  max-height: 360px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
}

.cat-scroll {
  display: grid;
  gap: 6px;
}

.cat-btn {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  font-weight: 900;
  transition: transform 460ms var(--ease), border-color 460ms var(--ease), background 460ms var(--ease), color 460ms var(--ease);
}

.cat-btn:hover {
  border-color: rgba(15, 118, 110, 0.34);
  background: rgba(232, 250, 246, 0.9);
  transform: translateX(3px);
}

.cat-btn.selected {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--carbon), var(--teal));
}

.cat-btn small {
  display: block;
  margin-top: 4px;
  color: inherit;
  opacity: 0.72;
  font-weight: 700;
}

.selected-list:empty::after {
  content: "Henüz kategori seçilmedi";
  display: block;
  padding: 20px;
  color: var(--soft);
  text-align: center;
}

.selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  padding: 11px 13px;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.selected-item button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: #7f1d1d;
  background: rgba(254, 226, 226, 0.8);
  cursor: pointer;
}

.text-panel {
  display: flex;
  flex-direction: column;
}

.text-panel textarea {
  flex: 1;
  min-height: 320px;
}

.word-count {
  margin-top: 8px;
  color: var(--soft);
  text-align: right;
  font-size: 13px;
  font-weight: 800;
}

.hidden {
  display: none !important;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .app-header-inner {
    align-items: center;
    border-radius: 34px;
  }

  .nav-links,
  .header-actions {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
  }

  .stepper {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .card-grid,
  .decision-grid,
  .creator-grid,
  .creator-grid.build {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .app-header {
    top: 10px;
    margin-top: 10px;
  }

  .app-header-inner {
    width: min(100% - 28px, 1180px);
    padding: 10px 12px;
  }

  .nav-links {
    gap: 6px;
    flex-wrap: wrap;
  }

  .container {
    width: calc(100% - 24px);
    margin-top: 24px;
  }

  .panel {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .title-row h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .nav-links > a:not(.btn),
  .header-actions > a:not(.btn),
  .nav-dropdown-toggle,
  .btn {
    min-height: auto;
  }

  .nav-dropdown,
  [data-auth-actions] {
    width: auto;
  }

  .nav-dropdown-menu {
    position: absolute;
    width: min(280px, calc(100vw - 48px));
  }
}

@media (max-width: 420px) {
  .app-header {
    padding: 8px 8px 0;
  }

  .app-header-inner {
    border-radius: 24px;
    padding: 10px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .nav-links [data-auth-actions] {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
  }

  .nav-links > a:not(.btn),
  .nav-dropdown-toggle,
  .nav-links > .btn,
  .nav-links [data-auth-actions] > a {
    width: 100%;
    min-height: 46px;
    padding: 0 10px;
    font-size: 13px;
    justify-content: center;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    right: auto;
    left: 0;
    width: 100%;
  }

  .auth-container {
    width: calc(100% - 20px);
  }

  .panel {
    padding: 20px 14px;
    border-radius: 22px;
  }

  input,
  select,
  textarea,
  .auth-form .btn,
  .btn-google {
    min-height: 50px;
  }

  .auth-form .btn,
  .btn-google {
    width: 100%;
  }
}
