:root {
  --cya-bg: #0f1113;
  --cya-bg-radial: rgba(45, 107, 196, 0.18);
  --cya-surface: #1a1d21;
  --cya-surface-elevated: #20242a;
  --cya-surface-muted: #252830;
  --cya-border: #2c3038;
  --cya-border-strong: #3a404d;
  --cya-text: #f0f0f0;
  --cya-text-soft: #c7c9ce;
  --cya-text-muted: #8a8f9a;
  --cya-primary: #2d6bc4;
  --cya-primary-dark: #1e4d8c;
  --cya-primary-soft: rgba(45, 107, 196, 0.14);
  --cya-accent: #b22222;
  --cya-accent-dark: #8b1a1a;
  --cya-accent-soft: rgba(178, 34, 34, 0.16);
  --cya-success: #1a6b3c;
  --cya-success-dark: #145530;
  --cya-success-soft: rgba(26, 107, 60, 0.18);
  --cya-danger: #e87070;
  --cya-danger-soft: rgba(232, 112, 112, 0.14);
  --cya-warning: #f4b65f;
  --cya-radius-sm: 10px;
  --cya-radius-md: 14px;
  --cya-radius-lg: 20px;
  --cya-radius-xl: 28px;
  --cya-shadow-sm: 0 8px 22px rgba(0, 0, 0, 0.24);
  --cya-shadow-md: 0 18px 46px rgba(0, 0, 0, 0.28);
  --cya-shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.34);
  --cya-font-sans: "Inter", "Segoe UI", sans-serif;
  --cya-font-heading: "Montserrat", "Segoe UI", sans-serif;
}

html {
  background: var(--cya-bg);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at top, var(--cya-bg-radial) 0%, rgba(15, 17, 19, 0) 32%),
    linear-gradient(180deg, #13161a 0%, var(--cya-bg) 28%, #101214 100%);
  color: var(--cya-text);
  font-family: var(--cya-font-sans);
}

#app {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

.cya-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  color: var(--cya-text);
}

.cya-page a {
  color: inherit;
}

.cya-shell {
  width: min(100%, 1080px);
  min-width: 0;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.cya-panel {
  min-width: 0;
  background: linear-gradient(180deg, rgba(33, 37, 43, 0.98) 0%, rgba(24, 27, 31, 0.98) 100%);
  border: 1px solid var(--cya-border);
  border-radius: var(--cya-radius-lg);
  box-shadow: var(--cya-shadow-md);
}

.cya-section-card {
  min-width: 0;
  background: linear-gradient(180deg, rgba(30, 33, 38, 0.98) 0%, rgba(24, 27, 31, 0.98) 100%);
  border: 1px solid var(--cya-border);
  border-radius: var(--cya-radius-md);
  padding: 20px;
  box-shadow: var(--cya-shadow-sm);
}

.cya-section-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  min-width: 0;
}

.cya-section-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--cya-primary-soft);
  color: var(--cya-primary);
  flex: 0 0 auto;
}

.cya-section-card__eyebrow {
  color: var(--cya-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cya-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.cya-field + .cya-field {
  margin-top: 16px;
}

.cya-label {
  color: var(--cya-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cya-input-wrap,
.cya-select-wrap,
.cya-textarea-wrap {
  position: relative;
  min-width: 0;
}

.cya-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--cya-text-muted);
  pointer-events: none;
}

.cya-input-icon svg,
.cya-inline-icon svg,
.cya-section-card__icon svg,
.cya-shell-header__brand-mark svg,
.cya-shell-header__section-icon svg,
.cya-burger svg {
  display: block;
  overflow: visible;
  shape-rendering: geometricPrecision;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cya-input-icon svg,
.cya-inline-icon svg,
.cya-shell-header__brand-mark svg,
.cya-burger svg {
  width: 100%;
  height: 100%;
}

.cya-section-card__icon svg {
  width: 16px;
  height: 16px;
}

.cya-input-icon svg *,
.cya-inline-icon svg *,
.cya-section-card__icon svg *,
.cya-shell-header__brand-mark svg *,
.cya-shell-header__section-icon svg *,
.cya-burger svg * {
  vector-effect: non-scaling-stroke;
  stroke-width: 2.05;
}

.cya-input,
.cya-select,
.cya-textarea {
  width: 100%;
  border: 1px solid var(--cya-border);
  border-radius: var(--cya-radius-sm);
  background: var(--cya-surface-muted);
  color: var(--cya-text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background-color 0.18s ease;
}

.cya-input,
.cya-select {
  min-height: 50px;
  padding: 12px 16px;
}

.cya-input-wrap .cya-input-icon ~ .cya-input,
.cya-select-wrap .cya-input-icon ~ .cya-select,
.cya-textarea-wrap .cya-input-icon ~ .cya-textarea {
  padding-left: 42px;
}

.cya-input::placeholder,
.cya-textarea::placeholder {
  color: var(--cya-text-muted);
}

.cya-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.cya-select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--cya-text-muted);
  border-bottom: 2px solid var(--cya-text-muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.cya-textarea {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.cya-input:focus,
.cya-select:focus,
.cya-textarea:focus {
  border-color: var(--cya-accent);
  box-shadow: 0 0 0 4px rgba(178, 34, 34, 0.16);
  background: #282c34;
}

.cya-input:disabled,
.cya-select:disabled,
.cya-textarea:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.cya-hint {
  color: var(--cya-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.cya-status-text {
  color: var(--cya-text-soft);
}

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

.cya-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.cya-button:hover {
  transform: translateY(-1px);
}

.cya-button:active {
  transform: translateY(0);
}

.cya-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(178, 34, 34, 0.18);
}

.cya-button--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
  user-select: none;
}

.cya-button--loading:hover,
.cya-button--loading:active {
  transform: none;
}

.cya-button--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.96);
  animation: cya-spin 0.72s linear infinite;
}

.cya-button--primary {
  background: linear-gradient(135deg, var(--cya-primary) 0%, var(--cya-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(45, 107, 196, 0.28);
}

.cya-button--success {
  background: linear-gradient(135deg, var(--cya-success) 0%, var(--cya-success-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(26, 107, 60, 0.32);
}

.cya-button--ghost {
  background: rgba(37, 40, 48, 0.9);
  border-color: var(--cya-border);
  color: var(--cya-text);
}

.cya-button--danger {
  background: var(--cya-danger-soft);
  border-color: rgba(232, 112, 112, 0.34);
  color: var(--cya-danger);
}

.cya-button--subtle {
  background: rgba(37, 40, 48, 0.75);
  border-color: rgba(178, 34, 34, 0.28);
  color: var(--cya-text);
}

.cya-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cya-text-soft);
  font-size: 12px;
  font-weight: 600;
}

.cya-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(45, 107, 196, 0.86);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(45, 107, 196, 0.24);
}

.cya-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cya-text-soft);
  font-size: 13px;
  cursor: pointer;
}

.cya-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--cya-primary);
}

.cya-hidden-hook {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.cya-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(5, 8, 11, 0.72);
  backdrop-filter: blur(10px);
  z-index: 10000;
}

.cya-modal__box {
  width: min(100%, 560px);
  max-height: min(calc(100dvh - 40px), 100%);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(28, 31, 36, 0.98) 0%, rgba(20, 22, 26, 0.98) 100%);
  border: 1px solid var(--cya-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--cya-shadow-lg);
}

.cya-modal__box > * {
  min-width: 0;
}

.cya-modal__box--wide {
  width: min(100%, 980px);
}

.cya-modal__title {
  margin: 0;
  font-family: var(--cya-font-heading);
  font-size: 24px;
  line-height: 1.15;
}

.cya-modal__text {
  margin: 10px 0 0;
  color: var(--cya-text-muted);
  line-height: 1.55;
}

.cya-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 112, 112, 0.32);
  border-radius: 999px;
  background: rgba(106, 20, 20, 0.22);
  color: #ff9b9b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.cya-modal__close:hover {
  transform: translateY(-1px);
  background: rgba(136, 28, 28, 0.28);
  border-color: rgba(232, 112, 112, 0.46);
  color: #ffc2c2;
}

.cya-modal__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 112, 112, 0.2);
}

.cya-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cya-modal__actions > * {
  min-width: 0;
}

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

.cya-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: inherit;
}

.cya-empty-state {
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--cya-text-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.cya-brand-shine {
  display: inline-block;
  background: linear-gradient(
    120deg,
    rgba(240, 240, 240, 0.56) 0%,
    rgba(240, 240, 240, 0.98) 42%,
    rgba(240, 240, 240, 0.58) 58%,
    rgba(240, 240, 240, 0.34) 100%
  );
  background-size: 240% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: cya-shine 5s linear infinite;
}

.cya-shell-header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 0 16px;
}

.cya-shell-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(100%, 1080px);
  min-height: 68px;
  margin: 0 auto;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  background: rgba(26, 29, 33, 0.92);
  box-shadow: var(--cya-shadow-md);
  backdrop-filter: blur(14px);
}

.cya-shell-header__inner > * {
  min-width: 0;
}

.cya-shell-header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.cya-shell-header__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--cya-primary);
  flex: 0 0 auto;
}

.cya-shell-header__brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cya-shell-header__brand-title {
  font-family: var(--cya-font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.cya-shell-header__brand-subtitle {
  color: var(--cya-text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}

.cya-shell-header__title-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.cya-shell-header__section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(45, 107, 196, 0.14);
  border: 1px solid rgba(45, 107, 196, 0.16);
  color: var(--cya-primary);
  flex: 0 0 auto;
}

.cya-shell-header__section-icon svg {
  width: 20px;
  height: 20px;
}

.cya-shell-header__section-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cya-shell-header__section-eyebrow {
  color: var(--cya-text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cya-shell-header__section-title {
  color: var(--cya-text);
  font-family: var(--cya-font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cya-shell-header__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cya-primary) 0%, var(--cya-primary-dark) 100%);
  box-shadow: 0 12px 28px rgba(45, 107, 196, 0.28);
}

.cya-shell-header__avatar img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.cya-shell-header__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.cya-shell-header__notification-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--cya-border);
  border-radius: 14px;
  background: rgba(37, 40, 48, 0.9);
  color: var(--cya-text-muted);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.cya-shell-header__notification-button:hover,
.cya-shell-header__notification-button:focus-visible {
  background: #2a2e36;
  border-color: var(--cya-primary);
  color: var(--cya-text);
  outline: none;
}

.cya-shell-header__notification-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.cya-shell-header__notification-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cya-shell-header__notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cya-accent) 0%, var(--cya-accent-dark) 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(178, 34, 34, 0.3);
}

.cya-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--cya-border);
  border-radius: 12px;
  background: rgba(37, 40, 48, 0.9);
  color: var(--cya-text-muted);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.cya-burger:hover,
.cya-burger:focus-visible {
  background: #2a2e36;
  border-color: var(--cya-primary);
  color: var(--cya-text);
  outline: none;
}

.cya-burger svg {
  width: 18px;
  height: 18px;
}

.cya-shell-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  max-width: calc(100vw - 32px);
  padding: 10px;
  border: 1px solid var(--cya-border);
  border-radius: 16px;
  background: rgba(24, 27, 31, 0.98);
  box-shadow: var(--cya-shadow-md);
  display: none;
}

.cya-shell-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--cya-text-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.cya-shell-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cya-text);
}

.cya-notification-center__backdrop {
  position: absolute;
  inset: 0;
}

.cya-notification-center__box {
  width: min(100%, 460px);
  z-index: 1;
}

.cya-notification-center__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cya-notification-center__heading {
  min-width: 0;
}

.cya-notification-center__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--cya-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cya-notification-center__clear {
  width: auto;
  min-height: 42px;
  padding-inline: 14px;
  flex: 0 0 auto;
}

.cya-notification-center__status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cya-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.cya-notification-center__status[data-tone="error"] {
  color: var(--cya-danger);
  border-color: rgba(232, 112, 112, 0.24);
  background: rgba(232, 112, 112, 0.08);
}

.cya-notification-center__list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  max-height: min(55dvh, 480px);
  overflow: auto;
  padding-right: 4px;
}

.cya-notification-center__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  min-width: 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--cya-border);
  background: rgba(37, 40, 48, 0.74);
}

.cya-notification-center__open {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.cya-notification-center__open:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(45, 107, 196, 0.18);
  border-radius: 12px;
}

.cya-notification-center__item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.cya-notification-center__item-head strong {
  min-width: 0;
  color: var(--cya-text);
  font-size: 14px;
  line-height: 1.4;
}

.cya-notification-center__item-head span {
  flex: 0 0 auto;
  color: var(--cya-text-muted);
  font-size: 11px;
  font-weight: 600;
}

.cya-notification-center__open p {
  margin: 8px 0 0;
  color: var(--cya-text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.cya-notification-center__dismiss {
  width: auto;
  min-height: 40px;
  padding-inline: 12px;
  align-self: center;
}

.cya-notification-center__empty {
  margin: 0;
}

@keyframes cya-shine {
  from {
    background-position: 200% center;
  }
  to {
    background-position: -40% center;
  }
}

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

  .cya-shell {
    padding-inline: 16px;
  }

  .cya-shell-header {
    top: 10px;
    padding-inline: 12px;
  }
}

@media (max-width: 640px) {
  .cya-modal {
    align-items: flex-start;
    padding:
      max(14px, calc(env(safe-area-inset-top, 0px) + 8px))
      12px
      max(14px, calc(env(safe-area-inset-bottom, 0px) + 8px));
  }

  .cya-section-card,
  .cya-modal__box {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 18px;
  }

  .cya-button {
    width: 100%;
  }

  .cya-shell-header__inner {
    gap: 10px;
    min-height: 62px;
    padding-inline: 12px;
  }

  .cya-shell {
    padding-inline: 14px;
  }

  .cya-shell-header__title-group {
    gap: 10px;
  }

  .cya-shell-header__section-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .cya-shell-header__section-icon svg {
    width: 18px;
    height: 18px;
  }

  .cya-shell-header__avatar {
    width: 40px;
    height: 40px;
  }

  .cya-shell-header__avatar img {
    width: 24px;
    height: 24px;
  }

  .cya-shell-header__actions {
    gap: 8px;
  }

  .cya-shell-header__notification-button {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .cya-shell-header__brand-title,
  .cya-shell-header__section-title {
    font-size: 13px;
  }

  .cya-shell-header__section-title {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: initial;
    white-space: normal;
  }

  .cya-shell-header__brand-subtitle,
  .cya-shell-header__section-eyebrow {
    display: none;
  }

  .cya-notification-center__header,
  .cya-notification-center__item {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cya-notification-center__clear,
  .cya-notification-center__dismiss {
    width: 100%;
  }
}
