:root {
  --color-outline: #DFDBD7;
  --color-outline-variant: #C4B5AD;
  --color-background: #F9F8F7;
  --color-on-background: #423E3A;
  --color-surface: #FFFFFF;
  --color-on-surface: #423E3A;
  --color-on-surface-subdued: #8A8580;
  --color-surface-variant: #EFECE9;
  --color-on-surface-variant: #423E3A;
  --color-primary: #6B5345;
  --color-on-primary: #FFFFFF;
  --color-secondary: #546B5D;
  --color-on-secondary: #FFFFFF;
  --color-supporter: #8F738F;
  --color-on-supporter: #FFFFFF;
  --color-supporter-container: #F3EBF3;
  --color-on-supporter-container: #4A364A;
  --color-info: #4F7959;
  --color-on-info: #FFFFFF;
  --color-info-container: #E8EFEA;
  --color-on-info-container: #2F4D38;
  --color-warning: #C49245;
  --color-on-warning: #FFFFFF;
  --color-warning-container: #FBF2E3;
  --color-on-warning-container: #73521F;
  --color-error: #A63D3D;
  --color-on-error: #FFFFFF;
  --color-error-container: #FCEAEA;
  --color-on-error-container: #7A2626;
}

[data-theme=dark] {
  --color-outline: #423E3A;
  --color-outline-variant: #6B5345;
  --color-background: #1C1917;
  --color-on-background: #F9F8F7;
  --color-surface: #262320;
  --color-on-surface: #F9F8F7;
  --color-on-surface-subdued: #8A8580;
  --color-surface-variant: #302C28;
  --color-on-surface-variant: #DFDBD7;
  --color-primary: #C4B5AD;
  --color-on-primary: #1C1917;
  --color-secondary: #B7C9BE;
  --color-on-secondary: #1C1917;
  --color-supporter: #C2ABC2;
  --color-on-supporter: #1C1917;
  --color-supporter-container: #2D212D;
  --color-on-supporter-container: #F3EBF3;
  --color-info: #8EBC9E;
  --color-on-info: #1C1917;
  --color-info-container: #1D3324;
  --color-on-info-container: #E8EFEA;
  --color-warning: #E8C482;
  --color-on-warning: #1C1917;
  --color-warning-container: #4D391A;
  --color-on-warning-container: #FBF2E3;
  --color-error: #E38F8F;
  --color-on-error: #1C1917;
  --color-error-container: #521D1D;
  --color-on-error-container: #FCEAEA;
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/nunito-sans-v19-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/nunito-sans-v19-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/poppins-v24-latin-700.woff2") format("woff2");
}
:root {
  --font-header: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-body: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  font-family: var(--font-body);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

html, body {
  height: 100%;
  height: 100dvh;
  overscroll-behavior-y: none;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, textarea {
  user-select: auto;
  -webkit-user-select: auto;
}

button, input, select, textarea {
  font-family: inherit;
}

button {
  line-height: 1;
}

.button-1e3a649 {
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.button-1e3a649.secondary-1e3a649 {
  background-color: var(--color-secondary);
  color: var(--color-on-secondary);
}
.button-1e3a649.subdued-1e3a649 {
  background-color: var(--color-surface-variant);
  color: var(--color-on-surface-variant);
}
.button-1e3a649.dangerous-1e3a649 {
  background-color: var(--color-error);
  color: var(--color-on-error);
}
.button-1e3a649[disabled] {
  filter: grayscale(100%);
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.button-1e3a649:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.container-2b52476 {
  background-color: color-mix(in srgb, var(--color-primary) 15%, transparent);
  border: 1px solid var(--color-primary);
  border-left-width: 4px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.header-2b52476 {
  font-size: 0.9rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-on-surface);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.header-2b52476 .icon-2b52476 {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}
.header-2b52476 .icon-2b52476 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.header-2b52476 .icon-2b52476 path {
  fill: currentColor;
}

.content-2b52476 {
  font-size: 0.95rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface);
  line-height: 1.5;
}
.content-2b52476 p {
  margin: 0;
}
.content-2b52476 p:not(:last-child) {
  margin-bottom: 0.5rem;
}

.container-bda5dca {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-on-surface);
  font-size: 0.9rem;
  font-weight: 600;
}

.icon-bda5dca {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-bda5dca svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-bda5dca path {
  fill: currentColor;
}

.label-bda5dca {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.container-f2c710c {
  position: absolute;
  inset: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  border-radius: 12px;
  box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  pointer-events: auto;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0.4s;
}
.container-f2c710c.open-f2c710c {
  visibility: visible;
  transform: translateY(0%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0s;
}
.container-f2c710c.dragging-f2c710c {
  transition: none !important;
}

.header-f2c710c {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--color-outline);
}

.title-f2c710c {
  font-size: 1.1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.close-button-f2c710c {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  background: transparent;
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
}
.close-button-f2c710c:active {
  transform: scale(0.95);
}

.icon-f2c710c {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 1;
}
.icon-f2c710c svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-f2c710c path {
  fill: currentColor;
}

.content-area-f2c710c {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary) 10%, transparent);
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-start;
  border-radius: 12px;
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-grow: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.content-area-f2c710c::-webkit-scrollbar {
  display: none;
}

.drag-handle-f2c710c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  height: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  touch-action: none;
  user-select: none;
}

.drag-pill-f2c710c {
  width: 40px;
  height: 4px;
  background-color: rgba(128, 128, 128, 0.4);
  border-radius: 2px;
}

.group-f672bbb {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
}

.pill-base-f672bbb {
  font-size: 0.9rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  height: 3rem;
  border: 1px solid var(--color-outline);
  border-radius: 999px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.2s ease;
  background-color: var(--color-surface-variant);
  color: var(--color-on-surface-variant);
  flex: 1;
  min-width: 40%;
}
.pill-base-f672bbb:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.pill-base-f672bbb:active {
  transform: scale(0.97);
}
.pill-base-f672bbb .icon, .pill-base-f672bbb .chevron, .pill-base-f672bbb .label-text {
  pointer-events: none;
}
@media (max-width: 380px) {
  .pill-base-f672bbb {
    min-width: 100%;
  }
}
.pill-base-f672bbb .icon-f672bbb {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.pill-base-f672bbb .icon-f672bbb svg {
  display: block;
  width: 100%;
  height: 100%;
}
.pill-base-f672bbb .icon-f672bbb path {
  fill: currentColor;
}
.pill-base-f672bbb .label-text-f672bbb {
  flex: 1;
  margin-left: 0.75rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pill-base-f672bbb.active-f672bbb {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  border-color: var(--color-primary);
  transform: none;
}
.pill-base-f672bbb.active-f672bbb .icon {
  opacity: 1;
}
.pill-base-f672bbb.active-f672bbb .icon-f672bbb {
  opacity: 1;
}

.pill-dropdown-f672bbb {
  flex: none;
  width: 100%;
}
.pill-dropdown-f672bbb.unspecified-f672bbb {
  background-color: var(--color-surface-variant);
  border-color: var(--color-outline);
  color: var(--color-on-surface-variant);
}
.pill-dropdown-f672bbb.unspecified-f672bbb .icon-f672bbb {
  opacity: 1;
}
.pill-dropdown-f672bbb .clear-button-f672bbb {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: transparent;
  color: currentColor;
  border: none;
  border-radius: 50%;
  opacity: 0.6;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.pill-dropdown-f672bbb .clear-button-f672bbb:hover {
  opacity: 1;
  transform: scale(1.1);
}
.pill-dropdown-f672bbb .clear-icon-f672bbb {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 1;
}
.pill-dropdown-f672bbb .clear-icon-f672bbb svg {
  display: block;
  width: 100%;
  height: 100%;
}
.pill-dropdown-f672bbb .clear-icon-f672bbb path {
  fill: currentColor;
}
.pill-dropdown-f672bbb .chevron-icon-f672bbb {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pill-dropdown-f672bbb .chevron-icon-f672bbb svg {
  display: block;
  width: 100%;
  height: 100%;
}
.pill-dropdown-f672bbb .chevron-icon-f672bbb path {
  fill: currentColor;
}

.overlay-container-f672bbb {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.overlay-container-f672bbb > select, .overlay-container-f672bbb > input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  appearance: none;
}
.overlay-container-f672bbb > select::-webkit-calendar-picker-indicator, .overlay-container-f672bbb > input::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.pill-accordion-f672bbb {
  flex: none;
  width: 100%;
}
.pill-accordion-f672bbb.unspecified-f672bbb {
  background-color: var(--color-surface-variant);
  border-color: var(--color-outline);
  color: var(--color-on-surface-variant);
}
.pill-accordion-f672bbb.unspecified-f672bbb .icon-f672bbb {
  opacity: 1;
}
.pill-accordion-f672bbb .clear-button-f672bbb {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: transparent;
  color: currentColor;
  border: none;
  border-radius: 50%;
  opacity: 0.6;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.pill-accordion-f672bbb .clear-button-f672bbb:hover {
  opacity: 1;
  transform: scale(1.1);
}
.pill-accordion-f672bbb .clear-icon-f672bbb {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 1;
}
.pill-accordion-f672bbb .clear-icon-f672bbb svg {
  display: block;
  width: 100%;
  height: 100%;
}
.pill-accordion-f672bbb .clear-icon-f672bbb path {
  fill: currentColor;
}
.pill-accordion-f672bbb .chevron-icon-f672bbb {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.pill-accordion-f672bbb .chevron-icon-f672bbb svg {
  display: block;
  width: 100%;
  height: 100%;
}
.pill-accordion-f672bbb .chevron-icon-f672bbb path {
  fill: currentColor;
}
.pill-accordion-f672bbb .chevron-icon-f672bbb.chevron-expanded-f672bbb {
  transform: rotate(-180deg);
}

.list-7e79a12 {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin-bottom: 1rem;
  background-color: color-mix(in srgb, var(--color-on-surface) 7%, transparent);
  border-radius: 12px;
}

.key-value-7e79a12 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-on-surface) 10%, transparent);
}
.key-value-7e79a12:last-child {
  border-bottom: none;
}

.key-label-7e79a12 {
  flex-shrink: 0;
  margin-right: 1rem;
  opacity: 0.6;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-label-7e79a12 {
  text-align: right;
  word-break: break-all;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: monospace;
}

.wrapper-1cfc56f {
  position: relative;
  display: flex;
}

.medium-1cfc56f {
  color: var(--color-warning);
}

.low-1cfc56f {
  color: var(--color-error);
}

.none-1cfc56f {
  color: var(--color-on-surface-subdued);
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.overlay-error-1cfc56f {
  position: absolute;
  right: 0.25rem;
  bottom: 0.25rem;
  width: 50%;
  height: 50%;
  filter: drop-shadow(0px 0px 2px var(--color-surface));
  color: var(--color-error);
}
.overlay-error-1cfc56f path {
  fill: currentColor;
}

.overlay-warning-1cfc56f {
  position: absolute;
  right: 0.25rem;
  bottom: 0.25rem;
  width: 50%;
  height: 50%;
  filter: drop-shadow(0px 0px 2px var(--color-surface));
  color: var(--color-warning);
}
.overlay-warning-1cfc56f path {
  fill: currentColor;
}

.overlay-6b631e9 {
  position: absolute;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  border-radius: 12px;
}

.spinner-6b631e9 {
  z-index: 1001;
  width: 50px;
  height: 50px;
  border: 5px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.menu-b7a2786 {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-shrink: 0;
  width: 100%;
  height: 4rem;
  padding: 0 0.5rem;
  background-color: var(--color-surface);
  border-radius: 12px;
}

.item-b7a2786 {
  font-size: 0.75rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  gap: 0.25rem;
  background-color: transparent;
  border: none;
  color: color-mix(in srgb, var(--color-primary) 75%, transparent);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.item-b7a2786.active-b7a2786 {
  color: var(--color-primary);
}
.item-b7a2786.active-b7a2786::before {
  position: absolute;
  z-index: 0;
  content: "";
  width: 5rem;
  height: 3.5rem;
  background-color: var(--color-primary);
  opacity: 0.1;
  border-radius: 12px;
}
.item-b7a2786.active-b7a2786 > * {
  z-index: 101;
}

.item-icon-b7a2786 {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}
.item-icon-b7a2786 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.item-icon-b7a2786 path {
  fill: currentColor;
}

.list-86c32e2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 0.25rem;
}

.clear-all-button-86c32e2 {
  display: block;
  flex-shrink: 0;
  width: 100%;
  padding: 1rem 0.5rem 0.5rem;
  background-color: transparent;
  border: none;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
}

.notification-badge-abfd3ed {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--color-error);
  color: var(--color-on-error);
  border-radius: 50%;
  border: 2px solid var(--color-surface);
  font-size: 0.65rem;
  font-weight: 600;
}

.item-7a5cb03 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-height: 150px;
  padding: 0.875rem 1rem;
  background-color: var(--color-surface-variant);
  color: var(--color-on-surface);
  border: 1px solid var(--color-outline);
  border-left-width: 4px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease, max-height 0.3s cubic-bezier(0.32, 0.72, 0, 1), padding 0.3s cubic-bezier(0.32, 0.72, 0, 1), border-width 0.3s ease, color 0.2s ease;
}
.item-7a5cb03.info-7a5cb03 {
  border-left-color: var(--color-info);
}
.item-7a5cb03.error-7a5cb03 {
  border-left-color: var(--color-error);
}
.item-7a5cb03.swiping-7a5cb03 {
  transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
}
.item-7a5cb03 p {
  margin: 0;
  flex-grow: 1;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.4;
}
.item-7a5cb03.unseen-7a5cb03 p {
  font-weight: 700;
}
.item-7a5cb03.toast-7a5cb03 {
  padding: 1rem 1.25rem;
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  border-color: transparent;
  border-left-width: 1px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.item-7a5cb03.toast-7a5cb03.info-7a5cb03 {
  background-color: var(--color-info-container);
  color: var(--color-on-info-container);
}
.item-7a5cb03.toast-7a5cb03.error-7a5cb03 {
  background-color: var(--color-error-container);
  color: var(--color-on-error-container);
}
.item-7a5cb03.closing-7a5cb03 {
  opacity: 0;
  pointer-events: none;
}
.item-7a5cb03.closing-7a5cb03:not(.toast-7a5cb03) {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
}
.item-7a5cb03.closing-7a5cb03.toast-7a5cb03 {
  transform: scale(0.95) translateY(-10px);
}

.container-ba396ae {
  position: absolute;
  inset: 0;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  align-self: flex-start;
  width: 100%;
  height: fit-content;
  min-height: 0;
  margin: 0 auto;
  background-color: transparent;
  border-radius: 12px;
  overflow-y: hidden;
  transition: height 0.5s ease-in-out;
}
.container-ba396ae::-webkit-scrollbar {
  display: none;
}
.container-ba396ae:empty {
  display: none;
}

.list-ba396ae {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.spinning-bf0ed6a {
  animation: spin 0.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transform-origin: center;
}

.container-ec66657 {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary) 10%, transparent);
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-start;
  border-radius: 12px;
  background-color: var(--color-surface-variant);
  color: var(--color-on-surface-variant);
  gap: 0;
}

.input-group-ec66657 {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}
.input-group-ec66657 .input-label-ec66657 {
  font-size: 0.85rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface-variant);
}

.log-actions-ec66657 {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.app-version-ec66657 {
  font-size: 0.8rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 1rem;
  text-align: center;
  color: var(--color-on-surface-subdued);
  opacity: 0.75;
}

@keyframes entry {
  from {
    opacity: 0;
    transform: scale(0.98) translateY(2px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.container-c17c8a9 {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary) 10%, transparent);
  padding: 1rem;
  border: 1px solid var(--color-outline);
  border-radius: 12px;
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: entry 0.2s ease-out backwards;
}

.button-container-c17c8a9 {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.confirm-button-c17c8a9 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 20%, transparent);
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
}
.confirm-button-c17c8a9:active {
  transform: scale(0.95);
}

.cancel-button-c17c8a9 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-error);
  background: color-mix(in srgb, var(--color-error) 20%, transparent);
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
}
.cancel-button-c17c8a9:active {
  transform: scale(0.95);
}

.icon-c17c8a9 {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}
.icon-c17c8a9 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-c17c8a9 path {
  fill: currentColor;
}

@keyframes entry {
  from {
    opacity: 0;
    transform: scale(0.98) translateY(2px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.container-17c8858 {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary) 10%, transparent);
  padding: 1rem;
  border: 1px solid var(--color-outline);
  border-radius: 12px;
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: entry 0.2s ease-out backwards;
}

.device-icon-17c8858 {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  opacity: 1;
}
.device-icon-17c8858 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.device-icon-17c8858 path {
  fill: currentColor;
}

.text-column-17c8858 {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.name-17c8858 {
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.last-used-17c8858 {
  font-size: 0.65rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  display: flex;
  justify-items: bottom;
  gap: 0.5rem;
}

.last-used-label-17c8858 {
  font-weight: 600;
}

.delete-button-17c8858 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-error);
  background: color-mix(in srgb, var(--color-error) 20%, transparent);
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
}
.delete-button-17c8858:active {
  transform: scale(0.95);
}

.delete-icon-17c8858 {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 1;
}
.delete-icon-17c8858 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.delete-icon-17c8858 path {
  fill: currentColor;
}

.list-bbc4f48 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.75rem;
}

.placeholder-bbc4f48 {
  padding: 2rem;
  text-align: center;
  background-color: transparent;
  color: var(--color-on-secondary);
  opacity: 0.6;
  border: 1px dashed var(--color-secondary);
  border-radius: 12px;
}

.label-f5a9964 {
  font-size: 1.25rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  margin-right: auto;
}

.toolbar-25b1278 {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  background-color: var(--color-surface);
  border-radius: 12px;
}

.title-25b1278 {
  font-size: 1.25rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-on-background);
}

.children-25b1278 {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.shell-3b5fc8c {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100vh;
  padding-top: calc(env(safe-area-inset-top, 0px) + 0.5rem);
  padding-right: calc(env(safe-area-inset-right, 0px) + 0.5rem);
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 0.5rem);
  padding-left: calc(env(safe-area-inset-left, 0px) + 0.5rem);
  background-color: var(--color-outline);
  overflow: hidden;
}

.content-area-3b5fc8c {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary) 10%, transparent);
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-start;
  border-radius: 12px;
  background-color: var(--color-background);
  color: var(--color-on-background);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  flex-grow: 1;
}
.content-area-3b5fc8c::-webkit-scrollbar {
  display: none;
}

.pane-anchor-3b5fc8c {
  position: absolute;
  inset: 0;
  z-index: 3000;
  overflow: hidden;
  pointer-events: none;
}

.utility-icon-anchor-3b5fc8c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.container-35e3ba4 {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.container-35e3ba4.disabled-35e3ba4 {
  opacity: 0.5;
  pointer-events: none;
}
.container-35e3ba4.disabled-35e3ba4 input[type=range] {
  pointer-events: none;
}
.container-35e3ba4.disabled-35e3ba4 input[type=range]::-webkit-slider-thumb {
  cursor: not-allowed;
  pointer-events: none;
  background-color: var(--color-on-surface-subdued);
  border: 1px solid var(--color-on-surface-subdued);
}
.container-35e3ba4.disabled-35e3ba4 input[type=range]::-moz-range-thumb {
  cursor: not-allowed;
  pointer-events: none;
  background-color: var(--color-on-surface-subdued);
  border: 1px solid var(--color-on-surface-subdued);
}
.container-35e3ba4.disabled-35e3ba4 .track-35e3ba4 {
  background-color: var(--color-outline);
}

.track-35e3ba4 {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  border-radius: 2px;
}

.slider-35e3ba4 {
  display: flex;
  align-items: center;
  height: 1.5rem;
}
.slider-35e3ba4 input[type=range] {
  position: absolute;
  z-index: 2;
  width: 100%;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
  touch-action: pan-y;
}
.slider-35e3ba4 input[type=range]::-webkit-slider-thumb {
  top: 50%;
  pointer-events: all;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.slider-35e3ba4 input[type=range]::-moz-range-thumb {
  top: 50%;
  pointer-events: all;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  appearance: none;
}
.slider-35e3ba4 input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 2px var(--color-primary), 0 0 8px color-mix(in srgb, var(--color-primary) 16%, transparent);
}
.slider-35e3ba4 input[type=range]::-moz-range-thumb:active {
  box-shadow: inset 0 0 2px var(--color-primary), 0 0 8px color-mix(in srgb, var(--color-primary) 16%, transparent);
}
.slider-35e3ba4 input[type=range]::-webkit-slider-runnable-track {
  background-color: transparent;
  border: none;
}
.slider-35e3ba4 input[type=range]::-moz-range-track {
  width: 100%;
  background-color: transparent;
}

.input-5080584 {
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-outline);
  border-radius: 8px;
  background: var(--color-surface-variant);
  color: var(--color-on-surface-variant);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0.25rem;
}
.input-5080584:focus, .input-5080584:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 5px var(--color-primary);
  outline: none;
}

.error-message-5080584 {
  width: 100%;
  min-height: 1.2em;
  margin: 0;
  padding-left: 5px;
  font-size: 0.8em;
  color: transparent;
  transition: color 0.2s ease-in-out;
}
.error-message-5080584[has-error] {
  color: var(--color-error);
}

.container-5080584 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.7rem;
}

.input-container-5080584 {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.view-icon-5080584 {
  height: 85%;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.toggle-view-5080584 {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-46%);
  width: 35px;
  height: 100%;
  padding: 5px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.toggle-view-5080584:focus-visible {
  outline: none;
}
.toggle-view-5080584:focus-visible .view-icon-5080584 {
  height: 90%;
  opacity: 1;
}

.toggle-cf0b3c7 {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 3rem;
  height: 1.75rem;
  padding: 2px;
  background-color: var(--color-surface-variant);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toggle-cf0b3c7 .thumb-cf0b3c7 {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-surface);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toggle-cf0b3c7.active-cf0b3c7 {
  background-color: var(--color-primary);
}
.toggle-cf0b3c7.active-cf0b3c7 .thumb-cf0b3c7 {
  transform: translateX(calc(1.5rem - 4px));
}
.toggle-cf0b3c7.disabled-cf0b3c7 {
  opacity: 0.5;
  pointer-events: none;
}

.button-1cddc06 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  background: transparent;
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
  position: relative;
}
.button-1cddc06:active {
  transform: scale(0.95);
}

.icon-1cddc06 {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}
.icon-1cddc06 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-1cddc06 path {
  fill: currentColor;
}

.form-2bd2e7c {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.title-ce92672 {
  font-size: 1.5rem;
  margin: 0;
  font-family: var(--font-header);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.form-ce92672 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.realm-section-ce92672 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-top: auto;
  padding-top: 2rem;
}

.link-container-ce92672 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.link-ce92672 {
  color: var(--color-secondary);
  text-decoration: none;
}
.link-ce92672:focus, .link-ce92672:hover {
  outline: none;
  text-decoration: underline;
}

.form-15f83a9 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-8496e0d {
  display: flex;
  flex-direction: column;
}

.container-43a12c9 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.picker-container-43a12c9 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@keyframes accordionExpand {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-content-43a12c9 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  width: 100%;
  animation: accordionExpand 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.menu-43a12c9 {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem;
  background-color: color-mix(in srgb, var(--color-on-surface) 6%, transparent);
  border-radius: 12px;
  scroll-snap-type: x mandatory;
}
.menu-43a12c9::-webkit-scrollbar {
  display: none;
}

.tab-43a12c9 {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 6rem;
  padding: 0.5rem;
  background-color: transparent;
  color: var(--color-on-surface-subdued);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-43a12c9.active-43a12c9 {
  background-color: var(--color-surface);
  color: var(--color-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.content-43a12c9 {
  display: flex;
  flex-direction: column;
}

.pill-grid-43a12c9 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
}

@keyframes pillAnimation {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.pill-43a12c9 {
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 3rem;
  padding: 0.65rem 1rem;
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  border: 1px solid color-mix(in srgb, var(--color-on-surface) 10%, transparent);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pillAnimation 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.pill-43a12c9 > :first-child {
  flex: 1;
  overflow: hidden;
}
.pill-43a12c9.active-pill-43a12c9 {
  background-color: color-mix(in srgb, var(--color-secondary) 15%, transparent);
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.pill-43a12c9.input-pill-43a12c9 {
  cursor: text;
  border-style: dashed;
}
.pill-43a12c9.input-pill-43a12c9 input {
  background: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  outline: none;
}
.pill-43a12c9.input-pill-43a12c9 input::placeholder {
  color: var(--color-on-surface-subdued);
}
.pill-43a12c9.input-pill-43a12c9:focus-within {
  border-color: var(--color-primary);
  border-style: solid;
  background-color: color-mix(in srgb, var(--color-primary) 5%, transparent);
}

.submit-icon-button-43a12c9,
.remove-icon-button-43a12c9 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  background: transparent;
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
  flex-shrink: 0;
}
.submit-icon-button-43a12c9:active,
.remove-icon-button-43a12c9:active {
  transform: scale(0.95);
}

.submit-icon-43a12c9 {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  opacity: 1;
}
.submit-icon-43a12c9 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.submit-icon-43a12c9 path {
  fill: currentColor;
}

.remove-icon-43a12c9 {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}
.remove-icon-43a12c9 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.remove-icon-43a12c9 path {
  fill: currentColor;
}

.container-567e6b9 {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  min-height: 1.5rem;
  padding-bottom: 2px;
  scroll-snap-type: x mandatory;
}
.container-567e6b9::-webkit-scrollbar {
  display: none;
}

.pill-567e6b9 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: color-mix(in srgb, var(--color-on-surface) 10%, transparent);
  color: var(--color-on-surface-variant);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  scroll-snap-align: start;
}

.icon-567e6b9 {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  opacity: 1;
}
.icon-567e6b9 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-567e6b9 path {
  fill: currentColor;
}

.container-8579aff {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-8579aff {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
  flex-shrink: 0;
}
.icon-8579aff svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-8579aff path {
  fill: currentColor;
}

.text-8579aff {
  font-size: 0.85rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-on-surface);
  font-variant-numeric: tabular-nums;
}

.health-bar-c6bf156 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: width 1s linear, background-color 1s ease;
}
.health-bar-c6bf156.high-c6bf156 {
  background-color: var(--color-info);
}
.health-bar-c6bf156.medium-c6bf156 {
  background-color: var(--color-warning);
}
.health-bar-c6bf156.low-c6bf156 {
  background-color: var(--color-error);
}

.container-d37dc5d {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}

.label-d37dc5d {
  font-size: 0.8rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface-subdued);
  flex-shrink: 0;
}

.name-d37dc5d {
  font-size: 0.8rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-on-surface);
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.card-a5b7386 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  padding-bottom: 1.25rem;
  background-image: linear-gradient(to bottom right, color-mix(in srgb, var(--color-info) 30%, transparent), color-mix(in srgb, var(--color-info-container) 0%, transparent));
  color: var(--color-on-surface);
  border: 1px solid var(--color-outline);
  border-radius: 12px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary) 10%, transparent);
  clip-path: inset(0 round 12px);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card-a5b7386.supporters-only-a5b7386 {
  background-image: linear-gradient(to bottom right, color-mix(in srgb, var(--color-supporter) 40%, transparent), color-mix(in srgb, var(--color-supporter-container) 0%, transparent));
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-warning) 10%, transparent);
}

.header-a5b7386 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.left-header-a5b7386 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-a5b7386 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.footer-left-a5b7386,
.footer-right-a5b7386 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-52c3da7 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}
.avatar-52c3da7.style-system-52c3da7 {
  background-color: var(--color-background);
  color: var(--color-on-background);
}
.avatar-52c3da7.style-a-52c3da7 {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
}
.avatar-52c3da7.style-b-52c3da7 {
  background-color: var(--color-secondary);
  color: var(--color-on-secondary);
}
.avatar-52c3da7.style-c-52c3da7 {
  background-color: var(--color-info-container);
  color: var(--color-on-info-container);
}
.avatar-52c3da7.style-d-52c3da7 {
  background-color: var(--color-warning-container);
  color: var(--color-on-warning-container);
}
.avatar-52c3da7.style-e-52c3da7 {
  background-color: var(--color-error-container);
  color: var(--color-on-error-container);
}
.avatar-52c3da7 span {
  font-weight: 700;
  font-size: 1.2rem;
  transform: translateX(0.05rem) translateY(0.05rem);
}
.avatar-52c3da7 img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.avatar-52c3da7.typing-indicator-52c3da7 {
  width: 1.25rem;
  height: 1.25rem;
}
.avatar-52c3da7.typing-indicator-52c3da7 span {
  font-size: 0.6rem;
  transform: translateX(0) translateY(0);
}

.input-d9eab7f {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  background-color: var(--color-background);
}
.input-d9eab7f input {
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  flex-grow: 1;
  height: 3rem;
  padding: 0 1rem;
  background-color: var(--color-background);
  color: var(--color-on-background);
  border: 1px solid var(--color-on-background);
  border-radius: 22px;
}
.input-d9eab7f input:focus-visible {
  border-color: var(--color-primary);
  outline: none;
}
.input-d9eab7f button {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.input-d9eab7f button .icon-d9eab7f {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
  transform: translateX(-0.1rem);
}
.input-d9eab7f button .icon-d9eab7f svg {
  display: block;
  width: 100%;
  height: 100%;
}
.input-d9eab7f button .icon-d9eab7f path {
  fill: currentColor;
}

.interface-1f19278 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
}

.message-list-1f19278 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.5rem;
  padding-right: 0.5rem;
  border-top: 1px solid color-mix(in srgb, var(--color-on-background) 30%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--color-on-background) 30%, transparent);
  overflow-y: auto;
}

.epoch-divider-1f19278 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 0 1rem;
  animation: epoch-pulse 0.8s ease-out forwards;
}

.line-1f19278 {
  flex-grow: 1;
  height: 1px;
  background-color: var(--color-primary);
  opacity: 0.3;
}

.label-1f19278 {
  font-size: 0.75rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.lock-icon-1f19278 {
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  opacity: 1;
}
.lock-icon-1f19278 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.lock-icon-1f19278 path {
  fill: var(--color-primary);
}

@keyframes epoch-pulse {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  50% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
    filter: drop-shadow(0 0 8px color-mix(in srgb, var(--color-primary) 50%, transparent));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
}
.message-a94065e {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  gap: 1rem;
  margin-top: 0.75rem;
  width: 100%;
}
.message-a94065e .container-a94065e {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.5rem;
  overflow: hidden;
}
.message-a94065e .header-a94065e {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.message-a94065e .header-right-a94065e {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: flex-end;
  gap: 0.25rem;
}
.message-a94065e .author-a94065e {
  font-size: 0.8rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-on-surface);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.message-a94065e .content-container-a94065e {
  position: relative;
}
.message-a94065e .status-container-a94065e {
  position: absolute;
  top: 0;
  right: 0;
}
.message-a94065e .content-a94065e {
  font-size: 0.9rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  margin: 0;
  padding-right: 2rem;
  color: var(--color-on-surface);
  line-height: 1.4;
  word-wrap: break-word;
}
.message-a94065e .corrupted-a94065e {
  font-style: italic;
  color: var(--color-error);
  opacity: 0.8;
  user-select: none;
}
.message-a94065e .timestamp-a94065e {
  font-size: 0.7rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface);
  opacity: 0.8;
  white-space: nowrap;
}

.card-a6ce4ca {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary) 10%, transparent);
  padding: 0.75rem;
  border: 1px solid var(--color-outline);
  border-radius: 12px;
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s ease;
}

.main-row-a6ce4ca {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-a6ce4ca {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.name-row-a6ce4ca {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.username-a6ce4ca {
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-on-surface);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.owner-icon-a6ce4ca {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  opacity: 1;
}
.owner-icon-a6ce4ca svg {
  display: block;
  width: 100%;
  height: 100%;
}
.owner-icon-a6ce4ca path {
  fill: var(--color-warning);
}

.meta-row-a6ce4ca {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.status-a6ce4ca {
  font-size: 0.8rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface-subdued);
}
.status-a6ce4ca.status-typing-a6ce4ca {
  color: var(--color-primary);
  font-style: italic;
}
.status-a6ce4ca.status-warning-a6ce4ca {
  color: var(--color-warning);
}
.status-a6ce4ca.status-error-a6ce4ca {
  color: var(--color-error);
}

.engagement-a6ce4ca {
  font-size: 0.75rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface-subdued);
  transition: color 0.2s ease;
}
.engagement-a6ce4ca.engagement-behind-a6ce4ca {
  font-size: 0.75rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-warning);
}

.security-banner-a6ce4ca {
  background-color: color-mix(in srgb, var(--color-error) 15%, transparent);
  border: 1px solid var(--color-error);
  border-left-width: 4px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
}

.warning-icon-a6ce4ca {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 1;
  margin-top: 0.1rem;
}
.warning-icon-a6ce4ca svg {
  display: block;
  width: 100%;
  height: 100%;
}
.warning-icon-a6ce4ca path {
  fill: var(--color-error);
}

.banner-content-a6ce4ca {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.banner-content-a6ce4ca p {
  font-size: 0.85rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0;
  color: var(--color-on-error-container);
}

.hash-box-a6ce4ca {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.6rem;
  background-color: color-mix(in srgb, var(--color-error) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-error) 25%, transparent);
  border-radius: 6px;
}

.hash-label-a6ce4ca {
  font-size: 0.65rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-on-error-container);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hash-value-a6ce4ca {
  font-size: 0.75rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-error-container);
  font-family: monospace;
  word-break: break-all;
  line-height: 1.4;
}

.trust-action-a6ce4ca {
  margin-top: 0.25rem;
  align-self: flex-start;
}
.trust-action-a6ce4ca button {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
}

.admin-actions-a6ce4ca {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-outline);
}

.kick-button-a6ce4ca,
.ban-button-a6ce4ca {
  font-size: 0.85rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.kick-button-a6ce4ca:active,
.ban-button-a6ce4ca:active {
  transform: scale(0.98);
}

.kick-button-a6ce4ca {
  background-color: color-mix(in srgb, var(--color-warning) 15%, transparent);
  color: var(--color-warning);
}
.kick-button-a6ce4ca:hover {
  background-color: color-mix(in srgb, var(--color-warning) 25%, transparent);
}

.ban-button-a6ce4ca {
  background-color: color-mix(in srgb, var(--color-error) 15%, transparent);
  color: var(--color-error);
}
.ban-button-a6ce4ca:hover {
  background-color: color-mix(in srgb, var(--color-error) 25%, transparent);
}

.action-icon-a6ce4ca {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  opacity: 1;
}
.action-icon-a6ce4ca svg {
  display: block;
  width: 100%;
  height: 100%;
}
.action-icon-a6ce4ca path {
  fill: currentColor;
}

.list-de3df53 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.status-indicator-3147e9f {
  display: flex;
}
.status-indicator-3147e9f .icon-3147e9f {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  opacity: 1;
}
.status-indicator-3147e9f .icon-3147e9f svg {
  display: block;
  width: 100%;
  height: 100%;
}
.status-indicator-3147e9f .icon-3147e9f path {
  fill: currentColor;
}
.status-indicator-3147e9f .icon-3147e9f path {
  fill: var(--color-on-surface);
}
.status-indicator-3147e9f .icon-3147e9f.subdued-3147e9f {
  opacity: 0.5;
}
.status-indicator-3147e9f .icon-3147e9f.highlight-3147e9f path {
  fill: var(--color-primary);
}

.avatar-stack-1df9a79 {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.avatar-stack-1df9a79 > * {
  margin-left: -1rem;
  isolation: isolate;
}
.avatar-stack-1df9a79 > *:first-child {
  margin-left: 0;
}

.placeholder-1df9a79 {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 2rem;
}

.typing-indicator-1df9a79 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.5rem;
  height: 2rem;
}
.typing-indicator-1df9a79 p {
  font-size: 0.75rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  flex-shrink: 0;
  color: var(--color-on-background);
}
.typing-indicator-1df9a79 .dots-1df9a79 span {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  background-color: var(--color-on-background);
  border-radius: 50%;
  animation: typing-dots 1.4s infinite ease-in-out both;
}
.typing-indicator-1df9a79 .dots-1df9a79 span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator-1df9a79 .dots-1df9a79 span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-dots {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.label-c416431 {
  font-size: 1.25rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  margin-right: auto;
}

.label-group-c416431 {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-right: auto;
}
.label-group-c416431 .label-c416431, .label-group-c416431 .toggle-label-c416431 {
  margin-right: 0;
  margin-bottom: 0;
}

.hint-text-c416431 {
  font-size: 0.85;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-warning);
}

.slider-header-c416431 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 0.5rem;
}

.slider-value-c416431 {
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface-subdued);
}

.general-label-c416431 {
  font-size: 1.25rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  margin-right: auto;
  margin-bottom: -0.5rem;
}

.toggle-list-c416431 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.toggle-row-c416431 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3rem;
}

.toggle-label-c416431 {
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface);
  flex: 1;
  padding-right: 1rem;
}

.submit-container-c416431 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.container-6b45fd4 {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 5rem 1rem;
  min-height: auto;
  transition: min-height 0.3s ease;
}
.container-6b45fd4.is-empty-6b45fd4 {
  min-height: 60vh;
  padding: 2rem;
}

.icon-container-6b45fd4 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--color-surface-variant);
  margin-bottom: 1.5rem;
}

.icon-6b45fd4 {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  opacity: 1;
  color: var(--color-on-surface-subdued);
}
.icon-6b45fd4 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-6b45fd4 path {
  fill: currentColor;
}

.headline-6b45fd4 {
  font-size: 1.5rem;
  margin: 0;
  font-family: var(--font-header);
  font-weight: 700;
  color: var(--color-on-surface);
  margin-bottom: 0.5rem;
}

.subtext-6b45fd4 {
  font-size: 0.95rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface-subdued);
  line-height: 1.4;
  max-width: 280px;
  margin-bottom: 2rem;
}

.action-group-6b45fd4 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 240px;
}

.label-f2b823b {
  font-size: 1.25rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  margin-right: auto;
}

.label-group-f2b823b {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-right: auto;
}
.label-group-f2b823b .label-f2b823b, .label-group-f2b823b .toggle-label-f2b823b {
  margin-right: 0;
  margin-bottom: 0;
}

.hint-text-f2b823b {
  font-size: 0.85rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-warning);
}

.slider-header-f2b823b {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 0.5rem;
}

.slider-value-f2b823b {
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface-subdued);
}

.general-label-f2b823b {
  font-size: 1.25rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  margin-right: auto;
  margin-bottom: -0.5rem;
}

.toggle-list-f2b823b {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.toggle-row-f2b823b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3rem;
}

.toggle-label-f2b823b {
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface);
  flex: 1;
  padding-right: 1rem;
}

.button-2a986ef {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 20%, transparent);
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
}
.button-2a986ef:active {
  transform: scale(0.95);
}
.button-2a986ef.disabled-2a986ef {
  filter: grayscale(100%);
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.icon-2a986ef {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}
.icon-2a986ef svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-2a986ef path {
  fill: currentColor;
}

.full-indicator-2a986ef {
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-on-surface);
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 0.5rem;
}

.list-6b57548 {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
}
.list-6b57548::-webkit-scrollbar {
  display: none;
}

.spacer-6b57548 {
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.virtual-window-6b57548 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  will-change: transform;
  transform: translateZ(0);
}

.card-slot-6b57548 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  contain: strict;
}

.container-781d67f {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem;
}

.icon-container-781d67f {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--color-surface-variant);
  margin-bottom: 1.5rem;
}

.icon-781d67f {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  opacity: 1;
  color: var(--color-on-surface-subdued);
}
.icon-781d67f svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-781d67f path {
  fill: currentColor;
}

.headline-781d67f {
  font-size: 1.5rem;
  margin: 0;
  font-family: var(--font-header);
  font-weight: 700;
  color: var(--color-on-surface);
  margin-bottom: 0.5rem;
}

.subtext-781d67f {
  font-size: 0.95rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-on-surface-subdued);
  line-height: 1.4;
  max-width: 280px;
  margin-bottom: 2rem;
}

.action-group-781d67f {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 240px;
}

.confirmation-text-37d767c {
  font-size: 0.95rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-error);
}

.chat-button-37d767c {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 20%, transparent);
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
  position: relative;
}
.chat-button-37d767c:active {
  transform: scale(0.95);
}

.unread-badge-37d767c {
  font-size: 0.65rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-error);
  color: var(--color-on-error);
  border: 2px solid var(--color-surface);
  border-radius: 999px;
  padding: 0 0.35rem;
  min-width: 20px;
  height: 20px;
  pointer-events: none;
}

.leave-button-37d767c {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-error);
  background: color-mix(in srgb, var(--color-error) 20%, transparent);
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
}
.leave-button-37d767c:active {
  transform: scale(0.95);
}

.confirm-button-37d767c {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 20%, transparent);
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
}
.confirm-button-37d767c:active {
  transform: scale(0.95);
}

.cancel-button-37d767c {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-error);
  background: color-mix(in srgb, var(--color-error) 20%, transparent);
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
}
.cancel-button-37d767c:active {
  transform: scale(0.95);
}

.icon-37d767c {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}
.icon-37d767c svg {
  display: block;
  width: 100%;
  height: 100%;
}
.icon-37d767c path {
  fill: currentColor;
}

.list-c1afd1c {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.label-922305d {
  font-size: 1.25rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  margin-right: auto;
}
