.phone-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

#phone_country_code.tutor-language-select {
  flex: 0 0 20%;
  max-width: 110px;
}

#phone_number.tutor-language-level {
  flex: 1 1 0;
  min-width: 0;
}

.tutor-language-row {
  display: flex;
  gap: 8px;
}

.tutor-language-select-wrapper {
  display: flex;
  flex-direction: column;
  flex: 0 0 40%;
  min-width: 0;
}

.tutor-language-select-wrapper .tutor-language-other {
  margin-top: 6px;
}

.tutor-language-row .tutor-language-level {
  flex: 1 1 0;
  min-width: 0;
}

.tutor-apply-hint {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.tutor-apply-hint-strong {
  font-weight: 500;
}

.tutor-apply-hint-size {
  margin-top: 2px;
  font-size: 12px;
  color: #4b5563;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #f9fafb;
  --bg-elevated: #ffffff;
  --bg-soft: #f3f4f6;
  --primary: #2563eb;
  --primary-soft: rgba(37, 99, 235, 0.06);
  --primary-strong: #1d4ed8;
  --text: #111827;
  --muted: #6b7280;
  --border-subtle: #e5e7eb;
  --card-border: #e5e7eb;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 0 1px rgba(59, 130, 246, 0.25),
    0 18px 40px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader-spinner {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid #e5e7eb;
  border-top-color: #2563eb;
  animation: page-loader-spin 0.8s linear infinite;
}

@keyframes page-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 640px) {
  body[data-page="support"] .container,
  body[data-page="tutorSupport"] .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.8;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: radial-gradient(circle at 10% 0, #a855f7 0, #6366f1 45%, #0ea5e9 90%);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9),
    0 12px 30px rgba(59, 130, 246, 0.45);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 600;
  font-size: 17px;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35),
    0 12px 30px rgba(15, 23, 42, 0.9);
}

.nav a {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.18s ease-out;
}

.nav a:hover {
  color: var(--text);
  background: rgba(148, 163, 184, 0.12);
}

.page {
  padding: 32px 0 64px;
}

.support-page {
  padding-bottom: 56px;
}

.support-hero {
  padding: 28px 0 10px;
  margin-bottom: 70px;
}

.support-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.support-hero h1 {
  margin: 0 0 6px;
  font-size: clamp(26px, 3.4vw, 30px);
  letter-spacing: -0.03em;
}

.support-hero p {
  margin: 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.support-search {
  width: 100%;
  display: flex;
  justify-content: center;
}

.support-search input[type="search"] {
  width: 100%;
  max-width: 400px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 14px;
  background-color: #ffffff;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='6' stroke='%239CA3AF' stroke-width='2'/%3E%3Cline x1='15.5' y1='15.5' x2='20' y2='20' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
  padding-left: 34px;
}

.support-search input[type="search"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

@media (min-width: 900px) {
  .support-search input[type="search"] {
    max-width: 400px;
  }
}

.support-content {
  padding: 8px 0 8px;
}

.support-results-summary {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* Aradaki boşluğu ~%40 artırdık */
  gap: 40px 45px;
}

.support-category-title {
  margin: 0 0 10px;
  font-size: 18px;
}

.support-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.support-article + .support-article {
  margin-top: 6px;
}

.support-article-button {
  display: inline-block;
  width: 100%;
  text-align: left;
  border: none;
  padding: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: #0284c7;
  cursor: pointer;
}

.support-article-button:hover {
  text-decoration: underline;
}

.support-detail {
  padding: 20px 0 0;
}

.support-article-layout {
  padding-top: 12px;
}

.support-detail-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
  padding: 16px 18px 20px;
}

.support-detail-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 10px;
}

.support-back-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-family: inherit;
  font-size: 13px;
  color: #111827;
  cursor: pointer;
}

.support-back-button:hover {
  background: #eff6ff;
  border-color: #dbeafe;
}

.support-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

.support-breadcrumb-root {
  font-weight: 500;
  color: #0f766e;
}

.support-breadcrumb-root:hover {
  text-decoration: underline;
}

.support-breadcrumb-separator {
  color: #9ca3af;
}

.support-breadcrumb-part {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.support-detail-title {
  margin: 0 0 6px;
  font-size: 18px;
}

.support-article-title {
  margin: 10px 0 14px;
  font-size: clamp(22px, 3vw, 26px);
  letter-spacing: -0.02em;
}

.support-detail-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.support-figure {
  margin: 18px 0 0;
  text-align: center;
}

.support-figure-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.support-figure-caption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

/* Article detail page */

.support-article-page {
  padding: 24px 0 40px;
  background: var(--bg);
}

.article-header-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 12px;
}

.article-back-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-family: inherit;
  font-size: 12px;
  color: #111827;
  cursor: pointer;
}

.article-back-button svg {
  width: 14px;
  height: 14px;
}

.article-back-button:hover {
  background: #eff6ff;
  border-color: #dbeafe;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
}

.article-breadcrumb-root {
  font-weight: 500;
  color: #0f766e;
}

.article-breadcrumb-root:hover {
  text-decoration: underline;
}

.article-breadcrumb-separator {
  color: #9ca3af;
}

.article-breadcrumb-part {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page-title {
  margin: 30px 0 14px;
  font-size: clamp(22px, 3vw, 26px);
  letter-spacing: -0.02em;
}

.article-content-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 22px;
}

.article-page-body {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
}

.article-page-body h2,
.article-page-body h3,
.article-page-body h4 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.article-page-body p {
  margin: 0 0 10px;
}

.article-page-body ul,
.article-page-body ol {
  padding-left: 20px;
  margin: 0 0 10px;
}

.article-page-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  margin: 12px 0;
}

.support-error-text {
  margin: 16px 0;
  font-size: 14px;
  color: #b91c1c;
  text-align: center;
}

.support-ticket-cta {
  margin-top: 100px;
  text-align: center;
}

.support-ticket-cta-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.support-ticket-cta-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.support-ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #f9fafb;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
}

.support-ticket-button:hover {
  filter: brightness(1.04);
}

.hero {
  padding: 16px 0 8px;
}

.hero-inner {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 34px);
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -80%;
  background: radial-gradient(
    circle at top,
    rgba(129, 140, 248, 0.35) 0,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.card:hover::before {
  opacity: 1;
}

.card h2 {
  margin: 0 0 8px;
  font-size: 17px;
}

.card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #f9fafb;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    filter 0.12s ease-out;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.4),
    0 18px 45px rgba(15, 23, 42, 0.9);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px 0 26px;
  background: var(--bg);
}

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

/* Legal pages layout */
.legal-page {
  padding: 32px 0 64px;
}

.legal-page-title {
  margin: 0 0 16px;
  font-size: clamp(24px, 3.2vw, 30px);
  letter-spacing: -0.03em;
}

.legal-content {
  font-size: 14px;
  line-height: 1.7;
}

.legal-content p {
  margin: 0 0 10px;
  color: var(--muted);
}

.lang-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}

.lang-select {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 30px 7px 12px;
  width: 130px;
  max-width: 130px;
  border-radius: 6px;
  border: 1px solid #d0d4dd;
  background-color: #ffffff;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.lang-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* Admin auth */
.admin-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.admin-auth-card {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 24px 22px 24px;
}

.admin-auth-header {
  text-align: center;
  margin-bottom: 18px;
}

.admin-auth-logo {
  height: 32px;
  margin-bottom: 10px;
}

.admin-auth-title {
  margin: 0 0 4px;
  font-size: 18px;
}

.admin-auth-subtitle {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.admin-auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-field-label {
  font-size: 12px;
  color: var(--muted);
}

.admin-field input,
.admin-field select {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
}

.admin-textarea {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  font-family: inherit;
  font-size: 13px;
  resize: vertical;
}

.admin-primary-button {
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #f9fafb;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  cursor: pointer;
  box-shadow: var(--shadow-glow);
}


.admin-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}

.admin-layout--full {
  display: block;
}

.admin-main--full {
  width: 100%;
}

.admin-sidebar {
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 16px 14px 16px;
}

.admin-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-page-title {
  margin: 0;
  font-size: 16px;
}

.admin-segment {
  margin-bottom: 14px;
  display: none;
}

.admin-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-list li {
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
}

.admin-list li:hover {
  background: #f3f4f6;
}

.admin-list li[data-selected="true"] {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.admin-list--compact li {
  padding: 4px 8px;
}

.admin-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-panel-block {
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 14px 16px 16px;
}

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-checkbox-field {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-top: 20px;
}

.admin-articles-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
}

.admin-article-form {
  border-left: 1px solid #e5e7eb;
  padding-left: 14px;
}

.admin-tabs {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 2px;
  background: #f9fafb;
}

.admin-tab {
  border: none;
  background: transparent;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
}

.admin-tab--active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.admin-lang-panel {
  display: none;
  margin-top: 10px;
}

.admin-lang-panel--active {
  display: block;
}

.admin-form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-status-text {
  font-size: 12px;
  color: var(--muted);
}

.admin-editor-shell {
  margin-top: 6px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
}

.admin-editor-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border-bottom: 1px solid #e5e7eb;
}

.admin-editor-toolbar button {
  border: none;
  background: transparent;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 999px;
  cursor: pointer;
  color: #4b5563;
}

.admin-editor-toolbar button:hover {
  background: #e5e7eb;
}

.admin-editor-surface {
  min-height: 140px;
  padding: 8px 10px;
  border-radius: 0 0 14px 14px;
  background: #ffffff;
  font-size: 13px;
  line-height: 1.6;
}

.admin-editor-surface:focus {
  outline: none;
}

.admin-lang-accordion {
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
  padding: 0 10px 10px;
}

.admin-lang-summary {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111827;
}

.admin-lang-summary::-webkit-details-marker {
  display: none;
}

.admin-lang-body {
  margin-top: 6px;
}

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

  .admin-articles-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-article-form {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
  }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* Mobilde de boşluğu ~%40 artırdık */
    gap: 28px 28px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 60px;
    padding: 8px 0;
  }

  .brand-logo {
    height: 30px;
  }
}

@media (max-width: 700px) {
  .cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================= */
/* Admin: Auth + Shell       */
/* ========================= */

.admin-auth-body {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #dbeafe 0, transparent 50%),
    radial-gradient(circle at bottom right, #fef3c7 0, transparent 55%),
    #f3f4f6;
}

.admin-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.admin-auth-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 24px 24px 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.admin-auth-header {
  margin-bottom: 18px;
}

.admin-auth-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.admin-auth-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

.admin-auth-logo-text {
  display: flex;
  flex-direction: column;
}

.admin-auth-product {
  font-weight: 600;
  font-size: 15px;
}

.admin-auth-label {
  font-size: 12px;
  color: var(--muted);
}

.admin-auth-title {
  margin: 8px 0 4px;
  font-size: 20px;
}

.admin-auth-subtitle {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.admin-auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-field-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.admin-field input {
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
}

.admin-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.admin-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #f9fafb;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    filter 0.12s ease-out;
}

.admin-primary-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.admin-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.12s ease-out, box-shadow 0.12s ease-out,
    transform 0.12s ease-out;
}

.admin-secondary-button:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.admin-error-text {
  margin: 6px 0 0;
  font-size: 12px;
  color: #b91c1c;
}

.admin-shell {
  min-height: 100vh;
  background: #f3f4f6;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.admin-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-header-title {
  font-size: 16px;
  font-weight: 600;
}

.admin-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

.admin-logo-text {
  display: flex;
  flex-direction: column;
}

.admin-logo-product {
  font-weight: 600;
  font-size: 15px;
}

.admin-logo-sub {
  font-size: 12px;
  color: var(--muted);
}

.admin-logout-button {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.admin-logout-button:hover {
  background: #fee2e2;
  color: #b91c1c;
  border-color: #fecaca;
}

.admin-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0;
  padding: 18px 24px 32px;
}

.admin-sidebar {
  padding-right: 18px;
  border-right: 1px solid #e5e7eb;
  height: 300px;
  overflow-y: auto;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-nav-section-title {
  margin: 0 0 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.admin-nav-link {
  display: block;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}

.admin-nav-link:hover {
  background: var(--bg-soft);
  color: var(--text);
}

.admin-nav-link--active {
  background: #e0edff;
  color: #1d4ed8;
}

.admin-main {
  padding-left: 24px;
}

.admin-page-header {
  margin-bottom: 20px;
}

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

.admin-page-title {
  margin: 0 0 4px;
  font-size: 22px;
}

.admin-page-subtitle {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.admin-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.admin-card h2 {
  margin: 0 0 6px;
  font-size: 16px;
}

.admin-card p {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
}

.admin-card-button {
  margin-top: 4px;
}

.admin-card--clickable {
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

.admin-card--clickable:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.admin-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th,
.admin-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.admin-table th {
  font-weight: 600;
  color: #4b5563;
  background: #f9fafb;
}

.admin-table tbody tr:hover {
  background: #f3f4f6;
}

.admin-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.admin-filter-row .admin-input,
.admin-filter-row .admin-select {
  min-width: 160px;
}

.admin-pagination {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.admin-pagination-page {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 12px;
  cursor: pointer;
}

.admin-pagination-page--active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.admin-textarea {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-family: inherit;
  font-size: 13px;
}

.admin-danger-button {
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 8px;
  border: 1px solid #fecaca;
  background: #fee2e2;
  color: #b91c1c;
  cursor: pointer;
}

.admin-danger-button:hover {
  background: #fecaca;
}

.admin-missing {
  color: #b91c1c;
  font-weight: 500;
}

@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px 16px 28px;
  }

  .admin-sidebar {
    padding-right: 0;
    border-right: none;
    margin-bottom: 12px;
  }

  .admin-main {
    padding-left: 0;
  }
}

/* ============= Tutor Apply Form ============= */
.tutor-apply-layout {
  max-width: 880px;
  margin: 80px auto;
  padding: 20px;
}

.tutor-apply-main-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px;
  color: var(--text);
}

.tutor-apply-container {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  max-width: 540px;
  margin: 0 auto;
}

.tutor-apply-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  text-align: center;
}

.tutor-apply-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 32px;
  text-align: center;
}

.tutor-apply-info {
  font-size: 13px;
  color: var(--muted);
  background: #f3f4ff;
  border-radius: 10px;
  padding: 10px 12px;
  margin: -12px 0 24px;
}

.tutor-apply-info--warning {
  background: #fff7ed;
  color: #c05621;
}

.payment-rate-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tutor-apply-complete {
  text-align: center;
  padding: 40px 16px;
}

.tutor-apply-complete-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  font-size: 32px;
  margin-bottom: 16px;
}

.tutor-apply-complete-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.tutor-apply-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-input {
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-family: inherit;
  transition: all 0.2s;
  background: var(--bg);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.input-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.18) !important;
}

.btn-primary {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.error-message {
  padding: 12px 16px;
  background: #fee;
  color: #c00;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}

.success-message {
  padding: 12px 16px;
  background: #efe;
  color: #070;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}

.tutor-apply-availability-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tutor-apply-availability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tutor-apply-availability-row strong {
  font-size: 13px;
  color: var(--muted);
  min-width: 90px;
}

.tutor-apply-availability-row .tutor-option-pill {
  margin-top: 4px;
}

.tutor-apply-availability-options {
  margin-left: 0;
}

.tutor-apply-divider {
  border-top: 1px solid var(--border-subtle);
  margin: 20px 0 24px;
}

.internet-test-frame {
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
  padding: 14px;
}

@media (max-width: 640px) {
  .tutor-apply-container {
    padding: 24px;
  }
  
  .tutor-apply-title {
    font-size: 24px;
  }
}

.tutor-apply-step-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.tutor-apply-step-label--error {
  color: #dc2626;
}

.tutor-apply-options-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tutor-option-pill {
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tutor-option-pill--selected {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 600;
}

.tutor-language-select {
  flex: 0 0 180px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  font-size: 14px;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 50%;
  padding-right: 32px;
}

.tutor-language-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.tutor-language-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
  margin-bottom: 10px;
  align-items: center;
}

.tutor-language-row .tutor-language-level {
  flex: 1 1 140px;
}

.tutor-language-row .form-input,
.tutor-language-row .tutor-language-select {
  padding: 8px 12px;
  font-size: 14px;
  height: 40px;
}

.tutor-language-remove {
  background: none;
  border: none;
  padding: 0 4px;
  cursor: pointer;
  color: #9ca3af;
  font-size: 18px;
  line-height: 1;
  align-self: center;
}

.tutor-language-remove:hover {
  color: #ef4444;
}

.btn-secondary {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  align-self: flex-start;
}

.btn-secondary:hover {
  background: #eef2ff;
}

/* Tutor apply step progress */
.tutor-apply-steps {
  display: flex;
  gap: 12px;
  margin: 0 0 24px;
}

.tutor-apply-step-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.1s ease;
}

.tutor-apply-step-item--active {
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 600;
  border-color: rgba(37, 99, 235, 0.35);
}

.tutor-apply-step-item--completed {
  background: #ecfdf3;
  color: #166534;
  border-color: #bbf7d0;
}

.tutor-apply-step-item--clickable:hover {
  transform: translateY(-1px);
  background: #eef2ff;
}

.tutor-apply-step-index {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
}

@media (max-width: 640px) {
  body[data-page="tutorApply"] {
    overflow-x: hidden;
  }

  .tutor-apply-steps {
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .tutor-apply-steps::-webkit-scrollbar {
    display: none;
  }

  .tutor-apply-step-item {
    flex: 0 0 auto;
    min-width: 140px;
  }
}

/* ----- Survey (public) ----- */
.survey-page {
  min-height: 60vh;
  padding: 2rem 0 3rem;
}
.survey-container {
  max-width: 520px;
  margin: 0 auto;
}
.survey-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2rem 1.75rem;
  border: 1px solid var(--card-border);
}
.survey-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.survey-tutor-name {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.survey-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.survey-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.survey-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.survey-field-desc {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.survey-input,
.survey-textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.survey-input:focus,
.survey-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.survey-textarea {
  resize: vertical;
  min-height: 80px;
}
.survey-stars {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.survey-star {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: #fff;
  color: #d1d5db;
  font-size: 1.35rem;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.survey-star:hover {
  color: #fbbf24;
  border-color: #fbbf24;
  background: #fffbeb;
}
.survey-star--active,
.survey-star.survey-star--active {
  color: #f59e0b;
  border-color: #f59e0b;
  background: #fffbeb;
}
.survey-actions {
  margin-top: 0.25rem;
}
.survey-submit-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.survey-submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}
.survey-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.survey-error-msg {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #dc2626;
}
.survey-error.survey-card .survey-title,
.survey-success.survey-card .survey-success-title {
  margin-bottom: 0.5rem;
}
.survey-success {
  text-align: center;
  padding: 2.5rem 1.75rem;
}
.survey-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
}
.survey-success-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.survey-success p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ----- Admin Survey ----- */
.admin-survey-panel .admin-panel-title {
  margin-bottom: 0.35rem;
}
.admin-survey-add-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.admin-survey-name-input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
}
.admin-survey-list-wrap {
  margin-top: 1rem;
}
.admin-survey-tutor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.admin-survey-tutor-item {
  background: var(--bg-elevated);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.admin-survey-tutor-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.admin-survey-tutor-name {
  font-size: 1rem;
}
.admin-survey-tutor-date {
  font-size: 0.8rem;
  color: var(--muted);
}
.admin-survey-tutor-link-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.admin-survey-link-input {
  flex: 1;
  min-width: 0;
  font-size: 0.85rem;
  max-width: 400px;
}
.admin-survey-copy-btn,
.admin-survey-delete-btn {
  flex-shrink: 0;
}
.admin-survey-eval-select-row {
  margin-bottom: 1.25rem;
}
.admin-survey-eval-select-row .admin-field-label {
  display: block;
  margin-bottom: 0.35rem;
}
.admin-survey-eval-select-row .admin-select {
  max-width: 320px;
}
.admin-survey-eval-list-wrap {
  margin-top: 1rem;
}
.admin-survey-eval-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.admin-survey-eval-table th,
.admin-survey-eval-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.admin-survey-eval-table th {
  font-weight: 600;
  color: var(--text);
  background: var(--bg-soft);
}
.admin-survey-stars {
  font-weight: 600;
  color: var(--primary-strong);
}
.admin-survey-note-cell {
  max-width: 280px;
  word-break: break-word;
  color: var(--muted);
  font-size: 0.85rem;
}
.admin-empty-state {
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1px dashed var(--border-subtle);
}

/* Survey Statistics */
.admin-survey-stats {
  margin-bottom: 1.5rem;
}

.admin-survey-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-survey-stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
}

.admin-survey-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.admin-survey-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-strong);
  margin-bottom: 0.25rem;
}

.admin-survey-stat-count {
  font-size: 0.8rem;
  color: var(--muted);
}


