:root {
  --c-bg: #ffffff;
  --c-surface: #fafafa;
  --c-surface-2: #f5f5f5;
  --c-border: #eaeaea;
  --c-border-strong: #d4d4d4;
  --c-text: #000000;
  --c-text-body: #1a1a1a;
  --c-text-muted: #6b6b6b;
  --c-text-mid: #999999;
  --c-accent: #d2b47f;
  --c-accent-hover: #c0a26b;
  --c-accent-soft: #f4ecdc;
  --c-secondary: #8121b8;
  --c-secondary-soft: #f2e6f8;
  --c-success: #1f7a3a;
  --c-success-soft: #e8f0ea;
  --c-danger: #b2241a;
  --c-danger-soft: #fbe9e7;
  --ff: "Poppins", -apple-system, system-ui, sans-serif;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-pop: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

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

body {
  font-family: "Poppins", -apple-system, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
  background: #ffffff;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

button {
  font-family: inherit;
}

.sn-hr {
  height: 1px;
  background: #eaeaea;
  border: 0;
  margin: 0;
}

.sn-mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
}

.sn-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999999;
}

.sn-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.sn-avatar--sm {
  width: 32px;
  height: 32px;
  font-size: 11px;
}
.sn-avatar--lg {
  width: 40px;
  height: 40px;
  font-size: 13px;
}

.sn-wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.sn-wordmark img {
  display: block;
  height: 36px;
  width: auto;
}
.sn-wordmark--sm {
  font-size: 18px;
}
.sn-wordmark--sm img {
  height: 28px;
}
.sn-wordmark--lg {
  font-size: 28px;
}
.sn-wordmark--lg img {
  height: 48px;
}
.sn-wordmark__mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #000000;
  color: #d2b47f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  margin-right: 10px;
}

.sn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: "Poppins", -apple-system, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.sn-btn--sm {
  height: 40px;
  font-size: 13px;
  padding: 0 16px;
}
.sn-btn--block {
  width: 100%;
}

.sn-btn-primary {
  background: #d2b47f;
  color: #1a1a1a;
}
.sn-btn-primary:hover {
  background: #8121b8;
  color: #fff;
}
.sn-btn-primary:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}

.sn-btn-ghost {
  background: #fff;
  color: #000000;
  border-color: #d4d4d4;
}
.sn-btn-ghost:hover {
  border-color: #000000;
}

.sn-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #eaeaea;
  background: #fff;
  color: #000000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sn-icon-btn:hover {
  border-color: #d4d4d4;
}
.sn-icon-btn__dot {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d2b47f;
}

.sn-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  font-family: "Poppins", -apple-system, system-ui, sans-serif;
  font-size: 15px;
  color: #000000;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sn-input::placeholder {
  color: #999999;
}
.sn-input:focus-visible {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
.sn-input.is-error {
  border-color: #b2241a;
  background: #fffcfc;
}
.sn-input.is-error:focus-visible {
  box-shadow: 0 0 0 3px rgba(178, 36, 26, 0.15);
}

textarea.sn-input {
  height: auto;
  min-height: 96px;
  padding: 12px 14px;
  line-height: 1.5;
  resize: vertical;
}

.sn-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.sn-help {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 6px;
}
.sn-help.is-error {
  color: #b2241a;
}

.sn-field {
  display: flex;
  flex-direction: column;
}
.sn-field__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sn-field__password {
  position: relative;
}
.sn-field__password .sn-input {
  padding-right: 44px;
}
.sn-field__affix {
  position: relative;
  display: flex;
  align-items: stretch;
}
.sn-field__affix-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #999999;
  font-size: 14px;
  pointer-events: none;
  user-select: none;
}
.sn-field__affix-text--prefix {
  left: 14px;
}
.sn-field__affix-text--suffix {
  right: 14px;
}
.sn-field__affix--has-prefix .sn-input {
  padding-left: 36px;
}
.sn-field__affix--has-suffix .sn-input {
  padding-right: 36px;
}
.sn-field__password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  color: #999999;
  display: inline-flex;
  border-radius: 4px;
}
.sn-field__password-toggle:hover {
  color: #000000;
}
.sn-field__password-toggle[aria-pressed=true] [data-when=hidden], .sn-field__password-toggle[aria-pressed=false] [data-when=visible] {
  display: none;
}
.sn-field__password-toggle-icon {
  display: inline-flex;
}

.sn-alert {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #fbe9e7;
  border: 1px solid rgba(178, 36, 26, 0.25);
}
.sn-alert__icon {
  color: #b2241a;
  flex-shrink: 0;
  margin-top: 1px;
}
.sn-alert__title {
  font-size: 13px;
  font-weight: 600;
  color: #b2241a;
  margin-bottom: 2px;
}
.sn-alert__text {
  font-size: 13px;
  color: #5e1b15;
  line-height: 1.5;
}
.sn-alert--success {
  background: #e8f0ea;
  border-color: rgba(31, 122, 58, 0.25);
}
.sn-alert--success .sn-alert__icon {
  color: #1f7a3a;
}
.sn-alert--success .sn-alert__title {
  color: #1f7a3a;
}
.sn-alert--success .sn-alert__text {
  color: #14512a;
}

.sn-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #1a1a1a;
  user-select: none;
  position: relative;
}
.sn-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sn-check__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid #d4d4d4;
  border-radius: 4px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
input:checked + .sn-check__box {
  background: #000000;
  border-color: #000000;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8.5 6.5 12 13 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.sn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
}
.sn-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.sn-badge--new {
  background: #d2b47f;
  color: #1a1a1a;
  border-color: #d2b47f;
}
.sn-badge--progress {
  background: #fff;
  color: #000000;
  border-color: #000000;
}
.sn-badge--done {
  background: #f5f5f5;
  color: #999999;
  border-color: transparent;
}
.sn-badge--role-admin {
  background: #f2e6f8;
  color: #8121b8;
  border-color: #f2e6f8;
}
.sn-badge--role-owner {
  background: #e8f0ea;
  color: #1f7a3a;
  border-color: #e8f0ea;
}
.sn-badge--role-tenant {
  background: #f4ecdc;
  color: #c0a26b;
  border-color: #f4ecdc;
}

.sn-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
}
.sn-card__header {
  padding: 22px 28px 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #eaeaea;
}
.sn-card__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.sn-card__subtitle {
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 2px;
}
.sn-card__link {
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sn-card__body {
  padding: 20px 28px;
}
.sn-card--collapsible > .sn-card__header--toggle {
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
}
.sn-card--collapsible > .sn-card__header--toggle:hover {
  background: #fafafa;
}
.sn-card--collapsible.is-collapsed > .sn-card__header--toggle {
  border-bottom: 0;
}
.sn-card--collapsible.is-collapsed > .sn-card__body {
  display: none;
}
.sn-card__chevron {
  display: inline-flex;
  align-items: center;
  color: #6b6b6b;
  transition: transform 0.15s ease;
  transform: rotate(90deg);
}
.sn-card--collapsible.is-collapsed > .sn-card__header--toggle .sn-card__chevron {
  transform: rotate(0deg);
}

.sn-sidebar {
  width: 248px;
  background: #fff;
  border-right: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sn-sidebar__brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid #eaeaea;
}
.sn-sidebar__brand-caption {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999999;
  margin-top: 10px;
}
.sn-sidebar__section {
  padding: 16px 22px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999999;
}
.sn-sidebar__nav {
  padding: 0 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sn-sidebar__profile {
  margin-top: auto;
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #eaeaea;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sn-sidebar__profile-name {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sn-sidebar__profile-role {
  font-size: 11px;
  color: #6b6b6b;
}
.sn-sidebar__logout {
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  color: #6b6b6b;
  display: inline-flex;
  border-radius: 4px;
  text-decoration: none;
}
.sn-sidebar__logout:hover {
  color: #000000;
  background: #f5f5f5;
}
@media (max-width: 1024px) {
  .sn-sidebar {
    width: 72px;
  }
  .sn-sidebar__brand {
    padding: 16px 0;
    display: flex;
    justify-content: center;
  }
  .sn-sidebar__brand .sn-wordmark img {
    max-width: 40px;
    height: auto;
  }
  .sn-sidebar__brand-caption {
    display: none;
  }
  .sn-sidebar__section {
    padding: 14px 0 6px;
    text-align: center;
    font-size: 0;
    border-top: 1px solid #eaeaea;
    margin: 6px 12px 0;
  }
  .sn-sidebar__section:first-of-type {
    border-top: 0;
    margin-top: 0;
  }
  .sn-sidebar__nav {
    padding: 0 0 4px;
    align-items: center;
    gap: 4px;
  }
  .sn-sidebar__empty {
    display: none;
  }
  .sn-sidebar__profile {
    padding: 12px 0;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  .sn-sidebar__profile > div[style] {
    display: none;
  }
}

.sn-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 8px 14px 8px 16px;
  border-radius: 6px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.sn-nav-item > svg {
  flex-shrink: 0;
}
.sn-nav-item > span {
  min-width: 0;
}
.sn-nav-item:hover {
  background: #f5f5f5;
}
.sn-nav-item__count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: #6b6b6b;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 999px;
}
.sn-nav-item.is-active {
  background: #f2e6f8;
  color: #8121b8;
  font-weight: 600;
}
.sn-nav-item.is-active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: #8121b8;
  border-radius: 0 2px 2px 0;
}
.sn-nav-item.is-active .sn-nav-item__count {
  background: #8121b8;
  color: #fff;
}
@media (max-width: 1024px) {
  .sn-nav-item {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    margin: 0 auto;
    justify-content: center;
  }
  .sn-nav-item > span:not(.sn-nav-item__count) {
    display: none;
  }
  .sn-nav-item__count {
    position: absolute;
    top: -4px;
    right: -4px;
    margin-left: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
    line-height: 18px;
    text-align: center;
  }
  .sn-nav-item.is-active::before {
    left: -14px;
  }
}

.sn-topbar {
  height: 64px;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sn-topbar__crumb {
  font-size: 11px;
  color: #999999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.sn-topbar__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.sn-topbar__tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sn-topbar--tablet {
  height: 60px;
  padding: 0 24px;
}
.sn-topbar--tablet .sn-topbar__title {
  font-size: 18px;
}

.sn-shell {
  min-height: 100vh;
  display: flex;
  background: #fafafa;
}
.sn-shell__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sn-shell__content {
  padding: 28px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .sn-shell__content {
    padding: 22px 24px 32px;
    gap: 16px;
  }
}

.sn-welcome {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 4px;
}
.sn-welcome--compact {
  align-items: center;
  margin-bottom: 12px;
}
.sn-welcome__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
}
.sn-welcome__lead {
  margin: 6px 0 0;
  color: #6b6b6b;
  font-size: 14px;
}
.sn-welcome__lead strong {
  color: #000000;
  font-weight: 600;
}
.sn-welcome__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b6b6b;
  font-size: 14px;
}
.sn-welcome__sep {
  color: #999999;
}
.sn-welcome__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .sn-welcome {
    flex-direction: column;
    align-items: flex-start;
  }
  .sn-welcome__title {
    font-size: 22px;
  }
  .sn-welcome__actions {
    display: none;
  }
}

.sn-grid-kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .sn-grid-kpi {
    grid-template-columns: 1fr;
  }
}

.sn-kpi {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sn-kpi__cell {
  padding: 28px 32px;
  border-right: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sn-kpi__cell:last-child {
  border-right: 0;
}
.sn-kpi__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sn-kpi__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b6b6b;
}
.sn-kpi__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sn-kpi__icon--accent {
  background: #f4ecdc;
  color: #7a5e2a;
}
.sn-kpi__value {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #000000;
}
.sn-kpi__sub {
  font-size: 13px;
  color: #6b6b6b;
}
@media (max-width: 640px) {
  .sn-kpi {
    grid-template-columns: 1fr;
  }
  .sn-kpi__cell {
    border-right: 0;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 24px;
  }
  .sn-kpi__cell:last-child {
    border-bottom: 0;
  }
  .sn-kpi__value {
    font-size: 40px;
  }
}

.sn-occupancy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.sn-occupancy__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.sn-occupancy__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.sn-occupancy__date {
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 2px;
}
.sn-occupancy__trend {
  font-size: 12px;
  color: #6b6b6b;
}
.sn-occupancy__body {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.sn-occupancy__chart {
  flex-shrink: 0;
}
.sn-occupancy__legend {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.sn-legend-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sn-legend-row__dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.sn-legend-row__label {
  font-size: 13px;
  color: #1a1a1a;
  flex: 1;
}
.sn-legend-row__value {
  font-size: 13px;
  color: #6b6b6b;
}
.sn-legend-row__pct {
  font-size: 13px;
  color: #000000;
  font-weight: 600;
  min-width: 36px;
  text-align: right;
}

.sn-requests {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sn-requests__item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  column-gap: 14px;
  align-items: start;
  padding: 16px 28px;
  border-bottom: 1px solid #eaeaea;
  text-decoration: none;
  color: inherit;
}
.sn-requests__item:last-child {
  border-bottom: 0;
}
.sn-requests__item:hover {
  background: #fafafa;
}
.sn-requests__avatar {
  margin-top: 2px;
}
.sn-requests__meta {
  min-width: 0;
}
.sn-requests__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.sn-requests__name {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}
.sn-requests__dot {
  font-size: 12px;
  color: #999999;
}
.sn-requests__addr {
  font-size: 13px;
  color: #6b6b6b;
}
.sn-requests__text {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.sn-requests__time {
  font-size: 12px;
  color: #999999;
  margin-top: 4px;
}
.sn-requests__tail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  color: #999999;
}
.sn-requests__empty {
  padding: 28px;
  text-align: center;
  font-size: 13px;
  color: #6b6b6b;
}

.sn-login {
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.sn-login__topbar {
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sn-login__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.sn-login__card {
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sn-login__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 12px;
}
.sn-login__title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #000000;
  margin: 0;
}
.sn-login__lead {
  font-size: 14px;
  color: #6b6b6b;
  margin: 12px 0 0;
  line-height: 1.5;
}
.sn-login__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sn-login__forgot {
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}
.sn-login__forgot:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sn-login__footer {
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eaeaea;
  font-size: 13px;
  color: #6b6b6b;
}
.sn-login__footer a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sn-login__help {
  color: #6b6b6b;
}
@media (max-width: 640px) {
  .sn-login__topbar, .sn-login__main, .sn-login__footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sn-login__card {
    width: 100%;
    max-width: 440px;
  }
  .sn-login__title {
    font-size: 28px;
  }
  .sn-login__footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

.sn-apt-filter {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sn-apt-filter .sn-input {
  height: 40px;
  font-size: 14px;
  padding: 0 12px;
}
.sn-apt-filter input.sn-input[type=search] {
  flex: 0 0 400px;
  width: 400px;
}
.sn-apt-filter select.sn-input {
  flex: 0 0 200px;
  width: 200px;
  padding-right: 28px;
}
.sn-apt-filter .ts-wrapper.sn-input {
  flex: 0 0 200px;
  width: 200px;
  min-height: 40px;
  height: 40px;
  font-size: 14px;
}
.sn-apt-filter .ts-wrapper.sn-input .ts-control {
  flex: 1 1 auto;
  width: 100%;
  min-height: 38px;
  height: 38px;
  padding: 0 32px 0 12px;
  font-size: 14px;
}
.sn-apt-filter .ts-wrapper.sn-input.single .ts-control {
  flex: 1 1 auto;
  width: 100%;
  padding: 0 32px 0 12px;
}
.sn-apt-filter__reset {
  font-size: 13px;
  color: #6b6b6b;
  text-decoration: underline;
  margin-left: 4px;
  white-space: nowrap;
}
.sn-apt-filter__reset:hover {
  color: #000000;
}

.sn-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1024px) {
  .sn-table-wrap > .sn-table {
    min-width: 720px;
  }
}

.sn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.sn-table thead th {
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b6b6b;
  padding: 10px 12px;
  border-bottom: 1px solid #eaeaea;
  white-space: nowrap;
}
.sn-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid #eaeaea;
  vertical-align: middle;
}
.sn-table tbody tr:last-child td {
  border-bottom: 0;
}
.sn-table tbody tr:hover {
  background: #fafafa;
}
.sn-table__num {
  text-align: right;
}
.sn-table__actions {
  text-align: right;
  white-space: nowrap;
}
.sn-table__actions > a,
.sn-table__actions > button,
.sn-table__actions > form {
  display: inline-flex;
  vertical-align: middle;
}
.sn-table__actions > a + .sn-table__actions > a,
.sn-table__actions > a + .sn-table__actions > button,
.sn-table__actions > a + .sn-table__actions > form,
.sn-table__actions > button + .sn-table__actions > a,
.sn-table__actions > button + .sn-table__actions > button,
.sn-table__actions > button + .sn-table__actions > form,
.sn-table__actions > form + .sn-table__actions > a,
.sn-table__actions > form + .sn-table__actions > button,
.sn-table__actions > form + .sn-table__actions > form {
  margin-left: 6px;
}
.sn-table__link {
  text-decoration: none;
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sn-table__link strong {
  font-weight: 600;
}
.sn-table__sub {
  font-size: 12px;
  color: #6b6b6b;
}
.sn-table__sub a {
  color: inherit;
  text-decoration: none;
}
.sn-table__sub a:hover {
  text-decoration: underline;
}

.sn-btn-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 12px;
}
.sn-btn-link:hover {
  text-decoration: underline;
}
.sn-btn-link--danger {
  color: #b2241a;
}

.sn-action-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #eaeaea;
  background: #fff;
  color: #6b6b6b;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  padding: 0;
}
.sn-action-btn:hover {
  color: #000000;
  border-color: #d4d4d4;
  background: #fafafa;
}
.sn-action-btn--danger {
  color: #b2241a;
}
.sn-action-btn--danger:hover {
  color: #b2241a;
  border-color: #b2241a;
  background: #fbe9e7;
}

.sn-empty {
  padding: 32px;
  text-align: center;
  color: #6b6b6b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sn-empty--inline {
  padding: 16px 0;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 12px;
  flex-wrap: wrap;
  row-gap: 8px;
}
@media (max-width: 640px) {
  .pagination {
    justify-content: center;
  }
  .pagination__links {
    order: -1;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.pagination__controls {
  display: flex;
  gap: 8px;
}
.pagination__btn {
  padding: 8px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  color: #000000;
  background: #fff;
  cursor: pointer;
}
.pagination__btn:hover {
  border-color: #000000;
}
.pagination__btn--disabled {
  color: #999999;
  cursor: default;
}
.pagination__btn--disabled:hover {
  border-color: #d4d4d4;
}
.pagination__links {
  display: flex;
  gap: 4px;
}
.pagination__link {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  color: #1a1a1a;
}
.pagination__link:hover {
  background: #fafafa;
}
.pagination__link--active {
  background: #000000;
  color: #fff;
}
.pagination__separator {
  align-self: center;
  color: #999999;
  padding: 0 4px;
}

.sn-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sn-form--apt {
  gap: 16px;
}
.sn-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
@media (max-width: 1024px) {
  .sn-form__grid {
    grid-template-columns: 1fr;
  }
}
.sn-form__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sn-form__full {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sn-form__footer {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.sn-form--inline {
  gap: 12px;
}
.sn-form--inline .sn-input {
  height: 40px;
  font-size: 14px;
}

.sn-btn--danger {
  color: #b2241a;
  border-color: #b2241a;
}
.sn-btn--danger:hover {
  background: #fbe9e7;
  color: #b2241a;
  border-color: #b2241a;
}

.sn-inline {
  display: inline-block;
}

.sn-defs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
  margin: 0 0 12px;
}
@media (max-width: 1024px) {
  .sn-defs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .sn-defs {
    grid-template-columns: 1fr;
  }
}
.sn-defs > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sn-defs dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b6b6b;
  font-weight: 500;
}
.sn-defs dd {
  font-size: 14px;
  color: #000000;
  margin: 0;
}
.sn-defs__heading {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin: 14px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sn-defs__text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.55;
  margin: 0 0 8px;
}
.sn-defs__sub {
  display: block;
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 2px;
}
.sn-defs__sub a {
  color: inherit;
  text-decoration: none;
}
.sn-defs__sub a:hover {
  text-decoration: underline;
}

.sn-active-tenancy {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  background: #fafafa;
}
.sn-active-tenancy strong {
  font-size: 15px;
}

.sn-divider {
  border: 0;
  border-top: 1px solid #eaeaea;
  margin: 18px 0;
}

.sn-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1024px) {
  .sn-detail-grid {
    grid-template-columns: 1fr;
  }
}

.sn-defs--compact {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .sn-defs--compact {
    grid-template-columns: 1fr;
  }
}

.sn-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #eaeaea;
  margin: 0 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sn-tabs::-webkit-scrollbar {
  display: none;
}
.sn-tabs__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: -1px;
  font-size: 14px;
  font-weight: 500;
  color: #6b6b6b;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.sn-tabs__item:hover {
  color: #000000;
  text-decoration: none;
}
.sn-tabs__item--active {
  color: #000000;
  font-weight: 600;
  border-bottom-color: #d2b47f;
  cursor: default;
}
.sn-tabs__item--active:hover {
  color: #000000;
}
.sn-tabs__item--disabled {
  color: #999999;
  opacity: 0.55;
  cursor: not-allowed;
}
.sn-tabs__item--disabled:hover {
  color: #999999;
}
.sn-tabs__icon {
  display: inline-flex;
  flex-shrink: 0;
  opacity: 0.85;
}
.sn-tabs__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 6px;
  margin-left: 2px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  background: #f5f5f5;
  color: #6b6b6b;
}
.sn-tabs__item--active .sn-tabs__count {
  background: #f4ecdc;
  color: #c0a26b;
}

.sn-table--documents {
  margin-top: 16px;
}
.sn-table--documents .sn-table__icon-col {
  width: 60px;
}
.sn-table--documents .sn-doc-row__actions {
  text-align: right;
  white-space: nowrap;
}
.sn-table--documents .sn-doc-row__actions > a,
.sn-table--documents .sn-doc-row__actions > button {
  margin-left: 6px;
}
.sn-table--documents .sn-doc-row__actions > a:first-child,
.sn-table--documents .sn-doc-row__actions > button:first-child {
  margin-left: 0;
}
.sn-table--documents .sn-doc-row__size,
.sn-table--documents .sn-doc-row__date {
  color: #6b6b6b;
  white-space: nowrap;
}
.sn-table--documents .sn-doc-row__name strong {
  display: block;
  font-weight: 600;
}

.sn-doc-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #6b6b6b;
}
.sn-doc-icon__badge {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1px 4px;
  border-radius: 3px;
  background: #000000;
  color: #fff;
  line-height: 1;
}
.sn-doc-icon[data-ext=pdf] .sn-doc-icon__badge {
  background: #b2241a;
}
.sn-doc-icon[data-ext=doc] .sn-doc-icon__badge, .sn-doc-icon[data-ext=docx] .sn-doc-icon__badge {
  background: #2b579a;
}
.sn-doc-icon[data-ext=xls] .sn-doc-icon__badge, .sn-doc-icon[data-ext=xlsx] .sn-doc-icon__badge {
  background: #217346;
}
.sn-doc-icon[data-ext=jpg] .sn-doc-icon__badge, .sn-doc-icon[data-ext=jpeg] .sn-doc-icon__badge, .sn-doc-icon[data-ext=png] .sn-doc-icon__badge, .sn-doc-icon[data-ext=webp] .sn-doc-icon__badge {
  background: #c0a26b;
}

.sn-modal__doc-info {
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sn-photo-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.sn-photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
  cursor: grab;
  border: 1px solid #eaeaea;
}
.sn-photo:active {
  cursor: grabbing;
}
.sn-photo__link {
  display: block;
  width: 100%;
  height: 100%;
}
.sn-photo__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sn-photo__remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s, background 0.15s;
}
.sn-photo__remove:hover {
  background: #b2241a;
}
.sn-photo__handle {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 14px;
  padding: 2px 6px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.15s;
  user-select: none;
}
.sn-photo:hover .sn-photo__remove,
.sn-photo:hover .sn-photo__handle {
  opacity: 1;
}

.sn-photo-grid .sortable-ghost {
  opacity: 0.4;
}

.filepond--root {
  font-family: "Poppins", -apple-system, system-ui, sans-serif !important;
  margin-bottom: 0 !important;
}

.filepond--panel-root {
  background: #fafafa !important;
  border: 1px dashed #d4d4d4 !important;
  border-radius: 6px !important;
}

.filepond--drop-label {
  color: #6b6b6b !important;
  font-size: 14px !important;
}

.filepond--label-action {
  color: #000000 !important;
  text-decoration-color: #000000 !important;
  font-weight: 600;
}

.filepond--item-panel {
  background-color: #f5f5f5 !important;
  border-radius: 6px !important;
}

.filepond--file {
  color: #000000 !important;
}

.filepond--file-info-main,
.filepond--file-info-sub,
.filepond--file-status-main,
.filepond--file-status-sub {
  color: #1a1a1a !important;
}

.filepond--file-info-sub,
.filepond--file-status-sub {
  color: #6b6b6b !important;
  opacity: 1 !important;
}

.filepond--file-action-button {
  background-color: rgba(0, 0, 0, 0.08) !important;
  color: #000000 !important;
}

.filepond--file-action-button:hover {
  background-color: rgba(0, 0, 0, 0.16) !important;
}

.filepond--item[data-filepond-item-state*=invalid] .filepond--item-panel,
.filepond--item[data-filepond-item-state*=error] .filepond--item-panel {
  background-color: #fbe9e7 !important;
}

.filepond--item[data-filepond-item-state*=invalid] .filepond--file-status-main,
.filepond--item[data-filepond-item-state*=error] .filepond--file-status-main {
  color: #b2241a !important;
}

.filepond--item[data-filepond-item-state*=invalid] .filepond--file-info-main,
.filepond--item[data-filepond-item-state*=error] .filepond--file-info-main {
  color: #000000 !important;
}

.swal2-popup {
  font-family: "Poppins", -apple-system, system-ui, sans-serif !important;
  border-radius: 8px !important;
}

.swal2-title {
  font-weight: 600 !important;
  color: #000000 !important;
}

.swal2-html-container {
  color: #1a1a1a !important;
}

.swal2-styled.swal2-confirm,
.swal2-styled.swal2-cancel {
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 6px !important;
  font-family: "Poppins", -apple-system, system-ui, sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.swal2-styled.swal2-confirm {
  background-color: #000000 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.swal2-styled.swal2-cancel {
  background-color: #fff !important;
  color: #000000 !important;
  border: 1px solid #d4d4d4 !important;
}

.ts-wrapper.sn-input {
  height: auto;
  min-height: 48px;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.ts-wrapper.sn-input .ts-control {
  flex: 1;
  min-height: 46px;
  border: 0;
  background: transparent;
  font-family: "Poppins", -apple-system, system-ui, sans-serif;
  font-size: 15px;
  align-items: center;
  padding: 0;
  box-shadow: none;
}
.ts-wrapper.sn-input.single .ts-control {
  padding: 0 14px;
  flex-wrap: nowrap;
}
.ts-wrapper.sn-input.single .ts-control > input {
  min-width: 0;
  flex: 1 1 auto;
}
.ts-wrapper.sn-input.multi .ts-control {
  padding: 6px 10px;
  gap: 4px;
}
.ts-wrapper.sn-input.focus {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
  outline: none;
}
.ts-wrapper.sn-input .ts-control > input {
  font-size: 15px;
  color: #000000;
  background: transparent;
}

.ts-dropdown {
  border-color: #d4d4d4;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-top: 2px;
}
.ts-dropdown .active {
  background: #fafafa;
  color: #000000;
}

.ts-wrapper.multi.sn-input .ts-control .item {
  background: #f4ecdc;
  color: #000000;
  border-radius: 4px;
  padding: 2px 8px;
  margin: 0;
}

.sn-modal {
  background: #fff;
  color: #000000;
  border-radius: 8px;
  width: min(720px, 92vw);
  padding: 22px 24px 20px;
}

.sn-modal__header {
  margin: 0 0 14px;
}

.sn-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.sn-modal__body {
  overflow: visible;
}

.sn-modal__inline-action {
  margin: -4px 0 12px;
}

.flatpickr-calendar {
  z-index: 100000 !important;
}

.ts-dropdown {
  z-index: 100000 !important;
}

.sn-fancybox .fancybox__slide {
  padding: 24px;
}
.sn-fancybox .f-html {
  background: #fff;
  border-radius: 8px;
  overflow: visible;
  max-width: min(720px, 92vw);
  margin: auto;
}
.sn-fancybox .f-button.is-close-btn {
  top: 6px;
  right: 6px;
  --f-button-color: #1a1a1a;
  --f-button-hover-color: #000000;
}

.flatpickr-day.selected {
  background: #000000 !important;
  border-color: #000000 !important;
}

.flatpickr-day:hover {
  background: #f5f5f5 !important;
}

.sn-thread {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sn-thread__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sn-thread__item--from-admin {
  flex-direction: row-reverse;
}
.sn-thread__item--from-admin .sn-thread__bubble {
  background: #f2e6f8;
  border-color: #f2e6f8;
}
.sn-thread__item--from-tenant .sn-thread__bubble {
  background: #f5f5f5;
}
.sn-thread__avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}
.sn-thread__bubble {
  flex: 1;
  min-width: 0;
  max-width: 720px;
  padding: 12px 16px;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  background: #fff;
}
.sn-thread__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #1a1a1a;
}
.sn-thread__meta strong {
  font-weight: 600;
}
.sn-thread__time {
  color: #999999;
  font-size: 12px;
}
.sn-thread__body {
  font-size: 14px;
  line-height: 1.6;
  color: #1a1a1a;
  word-break: break-word;
}
.sn-thread__attachments {
  list-style: none;
  margin: 12px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sn-thread__attachments a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8121b8;
  text-decoration: none;
}
.sn-thread__attachments a:hover {
  text-decoration: underline;
}
.sn-thread__attachment-size {
  color: #999999;
  font-size: 12px;
}

.sn-row-unread {
  background: #f4ecdc;
}
.sn-row-unread td strong {
  font-weight: 700;
}

.sn-page-title {
  margin: 16px 0 24px 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.sn-welcome__link {
  color: #8121b8;
  text-decoration: none;
}
.sn-welcome__link:hover {
  text-decoration: underline;
}

.sn-notif {
  position: relative;
}
.sn-notif__toggle {
  position: relative;
}
.sn-notif__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #d2b47f;
  color: #1a1a1a;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.sn-notif__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 360px;
  max-height: 480px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
  z-index: 1000;
  overflow: hidden;
}
.sn-notif__panel[hidden] {
  display: none;
}
.sn-notif__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #eaeaea;
  font-size: 14px;
}
.sn-notif__mark-all {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  color: #8121b8;
  cursor: pointer;
}
.sn-notif__mark-all:hover {
  text-decoration: underline;
}
.sn-notif__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}
.sn-notif__empty {
  padding: 24px 16px;
  text-align: center;
  color: #999999;
  font-size: 13px;
}
.sn-notif__item {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid #eaeaea;
  text-decoration: none;
  color: #1a1a1a;
}
.sn-notif__item:hover {
  background: #f5f5f5;
}
.sn-notif__item.is-unread {
  background: #f4ecdc;
}
.sn-notif__item.is-unread .sn-notif__title {
  font-weight: 600;
}
.sn-notif__title {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 4px;
}
.sn-notif__sub {
  font-size: 12px;
  color: #999999;
}
.sn-notif__footer {
  flex-shrink: 0;
  display: block;
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  color: #8121b8;
  text-decoration: none;
  border-top: 1px solid #eaeaea;
  background: #fff;
}
.sn-notif__footer:hover {
  background: #f5f5f5;
}
.sn-notif__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d2b47f;
}

.sn-notif-list__state {
  width: 32px;
  text-align: center;
  padding: 0;
}
.sn-notif-list__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8121b8;
  box-shadow: 0 0 0 3px rgba(129, 33, 184, 0.18);
}

.sn-text-muted {
  color: #999999;
}

.sn-error {
  width: 520px;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sn-error__code {
  font-family: "Poppins", -apple-system, system-ui, sans-serif;
  font-size: 160px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #d2b47f 0%, #8121b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 24px;
}
.sn-error .sn-login__eyebrow {
  margin-bottom: 12px;
}
.sn-error .sn-login__title {
  margin: 0;
}
.sn-error .sn-login__lead {
  margin: 12px 0 0;
  max-width: 420px;
}
.sn-error__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 640px) {
  .sn-error__code {
    font-size: 112px;
  }
  .sn-error__actions {
    flex-direction: column;
    width: 100%;
  }
  .sn-error__actions .sn-btn {
    width: 100%;
  }
}
