:root {
  --yeeldr-bg: #06111c;
  --yeeldr-bg-2: #081523;
  --yeeldr-surface: #0d1726;
  --yeeldr-surface-2: #101c2d;
  --yeeldr-border: rgba(118, 146, 190, 0.20);
  --yeeldr-text: #f5f7fb;
  --yeeldr-muted: #9aaccc;
  --yeeldr-blue: #4c7eff;
  --yeeldr-blue-2: #6d96ff;
  --yeeldr-green: #66d9a8;
  --yeeldr-shell-width: 1320px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }

body.yeeldr-shell {
  margin: 0;
  color: var(--yeeldr-text);
  background:
    radial-gradient(circle at 18% 10%, rgba(76,126,255,0.10), transparent 22%),
    radial-gradient(circle at 78% 12%, rgba(76,126,255,0.08), transparent 22%),
    linear-gradient(180deg, var(--yeeldr-bg) 0%, var(--yeeldr-bg-2) 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.yeeldr-shell a { color: inherit; }

.yeeldr-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--yeeldr-border);
  background: rgba(6, 17, 28, 0.86);
  backdrop-filter: blur(18px);
}

.yeeldr-topbar.is-scrolled {
  box-shadow: 0 16px 44px rgba(0,0,0,0.26);
}

.yeeldr-nav {
  width: min(calc(100% - 32px), var(--yeeldr-shell-width));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.yeeldr-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--yeeldr-text);
}

.yeeldr-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-left: -4px;
}

.yeeldr-brand span {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0;
}

.yeeldr-nav-links,
.yeeldr-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.yeeldr-nav-links a,
.yeeldr-login-link,
.yeeldr-upgrade-link {
  color: rgba(245, 247, 251, 0.82);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 9px 10px;
  border-radius: 8px;
}

.yeeldr-nav-links a:hover,
.yeeldr-nav-links a.active,
.yeeldr-login-link:hover,
.yeeldr-upgrade-link:hover {
  color: var(--yeeldr-text);
  background: rgba(255,255,255,0.055);
}

.yeeldr-primary-link,
.yeeldr-account-button {
  min-height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  border: 1px solid rgba(109,150,255,0.40);
}

.yeeldr-primary-link {
  padding: 0 16px;
  color: white;
  background: linear-gradient(180deg, #6a92f5 0%, #5d88ee 100%);
}

.yeeldr-account-button {
  padding: 0 12px;
  color: var(--yeeldr-text);
  background: rgba(255,255,255,0.055);
}

.yeeldr-account-button:hover,
.yeeldr-account-button:focus {
  border-color: rgba(109,150,255,0.65);
  background: rgba(109,150,255,0.14);
}

.yeeldr-plan-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  border: 1px solid rgba(102,217,168,0.28);
  background: rgba(102,217,168,0.10);
  color: #b8f3d7;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.yeeldr-dropdown {
  --bs-dropdown-bg: #101c2d;
  --bs-dropdown-border-color: rgba(118,146,190,0.25);
  --bs-dropdown-link-color: #f5f7fb;
  --bs-dropdown-link-hover-bg: rgba(109,150,255,0.14);
  --bs-dropdown-link-hover-color: #ffffff;
  --bs-dropdown-divider-bg: rgba(118,146,190,0.20);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}

.yeeldr-main {
  width: min(calc(100% - 32px), var(--yeeldr-shell-width));
  margin: 0 auto;
  padding: 24px 0 42px;
}

.yeeldr-message-stack { margin-bottom: 18px; }
.yeeldr-shell .container { max-width: var(--yeeldr-shell-width); }

.yeeldr-shell .card {
  background: linear-gradient(180deg, rgba(16, 28, 45, 0.98), rgba(13, 23, 38, 0.98));
  border: 1px solid var(--yeeldr-border);
  border-radius: 8px;
  color: var(--yeeldr-text);
}

.yeeldr-shell .text-muted,
.yeeldr-shell .text-secondary {
  color: var(--yeeldr-muted) !important;
}

.yeeldr-shell .form-control,
.yeeldr-shell .form-select,
.yeeldr-auth-panel input[type="password"],
.yeeldr-auth-panel input[type="text"],
.yeeldr-security-panel input[type="password"],
.yeeldr-security-panel input[type="text"] {
  color: var(--yeeldr-text);
  background-color: rgba(8, 16, 28, 0.68);
  border-color: var(--yeeldr-border);
  border-radius: 8px;
}

.yeeldr-shell .form-control:focus,
.yeeldr-shell .form-select:focus,
.yeeldr-auth-panel input[type="password"]:focus,
.yeeldr-auth-panel input[type="text"]:focus,
.yeeldr-security-panel input[type="password"]:focus,
.yeeldr-security-panel input[type="text"]:focus {
  color: var(--yeeldr-text);
  background-color: rgba(8, 16, 28, 0.86);
  border-color: rgba(109,150,255,0.70);
  box-shadow: 0 0 0 3px rgba(76,126,255,0.18);
}

.yeeldr-auth-panel input[type="password"],
.yeeldr-auth-panel input[type="text"],
.yeeldr-security-panel input[type="password"],
.yeeldr-security-panel input[type="text"] {
  display: block;
  width: 100%;
  min-height: 38px;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--yeeldr-border);
}

.yeeldr-password-field {
  position: relative;
}

.yeeldr-password-field input[type="password"],
.yeeldr-password-field input[type="text"] {
  padding-right: 44px;
}

.yeeldr-password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 32px;
  height: 28px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  color: rgba(154,172,204,0.92);
  background: transparent;
}

.yeeldr-password-toggle:hover,
.yeeldr-password-toggle:focus {
  color: var(--yeeldr-text);
  background: rgba(118,146,190,0.14);
}

.yeeldr-shell .btn {
  border-radius: 8px;
  font-weight: 700;
}

.yeeldr-shell .btn-primary {
  border-color: rgba(109,150,255,0.40);
  background: linear-gradient(180deg, #6a92f5 0%, #5d88ee 100%);
}

.yeeldr-shell .btn-outline-secondary,
.yeeldr-shell .btn-outline-primary {
  color: #c8d7ff;
  border-color: rgba(109,150,255,0.32);
  background: rgba(255,255,255,0.035);
}

.yeeldr-shell .btn-outline-secondary:hover,
.yeeldr-shell .btn-outline-primary:hover {
  color: white;
  background: rgba(109,150,255,0.16);
  border-color: rgba(109,150,255,0.58);
}

.yeeldr-shell .table {
  --bs-table-color: var(--yeeldr-text);
  --bs-table-bg: transparent;
  --bs-table-border-color: rgba(118,146,190,0.18);
  --bs-table-hover-bg: rgba(255,255,255,0.035);
}

.yeeldr-auth-main {
  width: min(calc(100% - 32px), 1040px);
  min-height: calc(100vh - 73px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 48px;
  padding: 48px 0;
}

.yeeldr-auth-main-compact {
  min-height: auto;
  align-items: start;
  padding: 28px 0;
}

.yeeldr-kicker {
  margin: 0 0 12px;
  color: var(--yeeldr-blue-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.yeeldr-auth-copy h1 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
}

.yeeldr-auth-copy p:not(.yeeldr-kicker) {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--yeeldr-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.yeeldr-auth-panel {
  border: 1px solid var(--yeeldr-border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 28, 45, 0.98), rgba(13, 23, 38, 0.98));
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.yeeldr-inline-link {
  color: #c8d7ff;
  font-size: 0.9rem;
  text-decoration: none;
}

.yeeldr-inline-link:hover {
  color: white;
}

.yeeldr-auth-submit {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(109,150,255,0.40);
  border-radius: 8px;
  background: linear-gradient(180deg, #6a92f5 0%, #5d88ee 100%);
  color: white;
  font-weight: 800;
}

.yeeldr-auth-submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  border-color: rgba(118,146,190,0.22);
  background: rgba(118,146,190,0.14);
}

.yeeldr-auth-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 8px;
}

.yeeldr-security-page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 18px 0 42px;
}

.yeeldr-security-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--yeeldr-border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16,28,45,0.98), rgba(13,23,38,0.98));
}

.yeeldr-security-panel-small {
  max-width: 520px;
  margin: 0 auto;
}

.yeeldr-confirm-panel {
  gap: 18px;
}

.yeeldr-confirm-content {
  display: grid;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(118,146,190,0.14);
}

.yeeldr-confirm-content h1 {
  margin: 2px 0 0;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 760;
}

.yeeldr-confirm-content p:last-child {
  margin: 5px 0 0;
  color: var(--yeeldr-muted);
  line-height: 1.45;
}

.yeeldr-confirm-actions {
  display: flex;
  justify-content: flex-end;
}

.yeeldr-confirm-actions .yeeldr-dashboard-save {
  min-width: 170px;
  padding: 0 16px;
}

.yeeldr-security-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.yeeldr-security-header h1 {
  margin: 2px 0 0;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 760;
}

.yeeldr-security-intro {
  max-width: 560px;
  margin: -4px 0 0;
  color: var(--yeeldr-muted);
  line-height: 1.48;
}

.yeeldr-auth-note {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--yeeldr-text);
  font-size: 0.92rem;
}

.yeeldr-auth-note span {
  color: var(--yeeldr-muted);
  font-size: 0.86rem;
}

.yeeldr-choice-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.yeeldr-choice {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(118,146,190,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
  color: rgba(245,247,251,0.88);
  font-weight: 600;
}

.yeeldr-choice input {
  width: 16px;
  height: 16px;
  accent-color: var(--yeeldr-blue);
}

.yeeldr-field-feedback {
  min-height: 20px;
  margin-top: 6px;
  color: var(--yeeldr-muted);
  font-size: 0.82rem;
}

.yeeldr-field-feedback.is-valid {
  color: var(--yeeldr-green);
}

.yeeldr-field-feedback.is-invalid {
  color: #ff9aa8;
}

.yeeldr-password-rules {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.yeeldr-password-rules span {
  position: relative;
  padding-left: 18px;
  color: var(--yeeldr-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.yeeldr-password-rules span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(118, 146, 190, 0.42);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.yeeldr-password-rules span.is-valid {
  color: var(--yeeldr-green);
}

.yeeldr-password-rules span.is-valid::before {
  border-color: rgba(102,217,168,0.70);
  background: var(--yeeldr-green);
}

.yeeldr-password-rules span.is-invalid {
  color: #ffb3bd;
}

.yeeldr-password-rules span.is-invalid::before {
  border-color: rgba(255,154,168,0.70);
  background: rgba(255,154,168,0.26);
}

.yeeldr-auth-secondary {
  margin: 16px 0 0;
  color: var(--yeeldr-muted);
  font-size: 0.92rem;
  text-align: center;
}

.yeeldr-auth-secondary a {
  color: #c8d7ff;
  font-weight: 700;
  text-decoration: none;
}

.yeeldr-auth-secondary a:hover {
  color: white;
}

.yeeldr-dashboard {
  display: grid;
  gap: 10px;
}

.yeeldr-dashboard-hero {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--yeeldr-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(109,150,255,0.20), rgba(102,217,168,0.08) 44%, rgba(16,28,45,0.96)),
    linear-gradient(180deg, rgba(16,28,45,0.98), rgba(13,23,38,0.98));
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.yeeldr-dashboard-hero h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.04;
  font-weight: 750;
  letter-spacing: 0;
}

.yeeldr-dashboard-hero p:not(.yeeldr-kicker) {
  max-width: 520px;
  margin: 7px 0 0;
  color: var(--yeeldr-muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.yeeldr-dashboard-status {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px;
  border: 1px solid rgba(118,146,190,0.22);
  border-radius: 8px;
  background: rgba(8,16,28,0.42);
}

.yeeldr-status-label,
.yeeldr-panel-kicker {
  color: var(--yeeldr-blue-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.yeeldr-dashboard-status strong {
  font-size: 1.25rem;
  line-height: 1;
}

.yeeldr-dashboard-status span:last-child {
  color: var(--yeeldr-muted);
}

.yeeldr-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.yeeldr-dashboard-panel {
  grid-column: span 6;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  border: 1px solid var(--yeeldr-border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16,28,45,0.98), rgba(13,23,38,0.98));
}

.yeeldr-dashboard-panel-wide {
  grid-column: span 12;
}

.yeeldr-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.yeeldr-panel-heading h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 760;
}

.yeeldr-panel-heading p {
  margin: 0;
}

.yeeldr-access-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.yeeldr-access-summary div,
.yeeldr-readonly-row,
.yeeldr-subscription-history div {
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border: 1px solid rgba(118,146,190,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.yeeldr-access-summary span,
.yeeldr-readonly-row span,
.yeeldr-subscription-history span {
  color: var(--yeeldr-muted);
  font-size: 0.78rem;
}

.yeeldr-access-summary strong,
.yeeldr-readonly-row strong,
.yeeldr-subscription-history strong {
  color: var(--yeeldr-text);
  font-size: 0.92rem;
}

.yeeldr-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.yeeldr-plan-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(118,146,190,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.yeeldr-plan-card.is-current {
  border-color: rgba(102,217,168,0.38);
  background: rgba(102,217,168,0.08);
}

.yeeldr-plan-card span {
  color: var(--yeeldr-blue-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.yeeldr-plan-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1.05rem;
}

.yeeldr-plan-card small {
  display: block;
  margin-top: 4px;
  color: var(--yeeldr-muted);
  line-height: 1.32;
}

.yeeldr-plan-button,
.yeeldr-dashboard-save,
.yeeldr-dashboard-ghost {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.yeeldr-plan-button,
.yeeldr-dashboard-save {
  border: 1px solid rgba(109,150,255,0.40);
  color: white;
  background: linear-gradient(180deg, #6a92f5 0%, #5d88ee 100%);
}

.yeeldr-plan-button:disabled,
.yeeldr-dashboard-save:disabled {
  color: rgba(245,247,251,0.70);
  cursor: not-allowed;
  border-color: rgba(118,146,190,0.18);
  background: rgba(118,146,190,0.12);
}

.yeeldr-dashboard-form {
  display: grid;
  gap: 7px;
}

.yeeldr-tab-form {
  gap: 10px;
}

.yeeldr-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.yeeldr-form-grid > div {
  display: grid;
  gap: 6px;
}

.yeeldr-dashboard-form label:not(.yeeldr-toggle) {
  color: var(--yeeldr-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.yeeldr-toggle,
.yeeldr-preference-tile {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(118,146,190,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.yeeldr-toggle {
  align-items: center;
}

.yeeldr-toggle span {
  font-weight: 700;
}

.yeeldr-marketing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.yeeldr-preference-tile strong,
.yeeldr-preference-tile small {
  display: block;
}

.yeeldr-preference-tile strong {
  font-size: 0.98rem;
}

.yeeldr-preference-tile small {
  margin-top: 2px;
  color: var(--yeeldr-muted);
  line-height: 1.34;
}

.yeeldr-consent-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(102,217,168,0.28);
  border-radius: 8px;
  background: rgba(102,217,168,0.10);
  color: #b8f3d7;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.yeeldr-consent-pill.is-muted {
  color: var(--yeeldr-muted);
  border-color: rgba(118,146,190,0.18);
  background: rgba(255,255,255,0.035);
}

.yeeldr-account-tabs {
  gap: 12px;
}

.yeeldr-tabs {
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(118,146,190,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.026);
}

.yeeldr-tabs .nav-link {
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--yeeldr-muted);
  padding: 0 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.yeeldr-tabs .nav-link:hover {
  color: var(--yeeldr-text);
  border-color: rgba(118,146,190,0.18);
}

.yeeldr-tabs .nav-link.active {
  color: white;
  border-color: rgba(109,150,255,0.34);
  background: rgba(109,150,255,0.16);
}

.yeeldr-tab-content {
  padding-top: 2px;
}

.yeeldr-tab-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.yeeldr-tab-heading h3 {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 760;
}

.yeeldr-security-actions,
.yeeldr-subscription-history {
  display: grid;
  gap: 8px;
}

.yeeldr-form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
}

.yeeldr-form-actions .yeeldr-dashboard-save {
  width: auto;
  min-width: 190px;
  padding: 0 16px;
}

.yeeldr-dashboard-ghost {
  width: 100%;
  border: 1px solid rgba(255,154,168,0.26);
  color: #ffc3ca;
  background: rgba(255,154,168,0.08);
}

@media (max-width: 980px) {
  .yeeldr-nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .yeeldr-nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

@media (max-width: 640px) {
  .yeeldr-nav,
  .yeeldr-main {
    width: min(calc(100% - 20px), var(--yeeldr-shell-width));
  }

  .yeeldr-brand span {
    font-size: 1.35rem;
  }

  .yeeldr-nav-actions {
    margin-left: auto;
  }

  .yeeldr-plan-pill,
  .yeeldr-upgrade-link {
    display: none;
  }
}

@media (max-width: 900px) {
  .yeeldr-dashboard-hero,
  .yeeldr-access-summary,
  .yeeldr-plan-grid,
  .yeeldr-form-grid,
  .yeeldr-marketing-grid {
    grid-template-columns: 1fr;
  }

  .yeeldr-dashboard-panel,
  .yeeldr-dashboard-panel-wide,
  .yeeldr-form-actions .yeeldr-dashboard-save {
    width: 100%;
  }

  .yeeldr-auth-actions {
    grid-template-columns: 1fr;
  }

  .yeeldr-confirm-actions,
  .yeeldr-confirm-actions .yeeldr-dashboard-save {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .yeeldr-dashboard-hero,
  .yeeldr-dashboard-panel {
    padding: 14px;
  }

  .yeeldr-panel-heading {
    display: grid;
  }
}

@media (max-width: 860px) {
  .yeeldr-auth-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0;
  }

  .yeeldr-auth-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }
}
