﻿@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,0,0;24,400,1,0');

:root {
  --bg: rgba(255, 255, 255, .97);
  --ink: rgba(0, 0, 0, .8);
  --muted: rgba(0, 0, 0, .55);
  --line: rgba(0, 0, 0, .1);
  --card: rgba(255, 255, 255, 1);
  --accent: #15a6ca;
  --shell: min(520px, calc(100% - .8rem));
}
.voxoli-accent-layer *{
  fill: var(--accent);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Quicksand", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 8%, transparent), transparent 26%),
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 5%, transparent), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, .99) 0%, var(--bg) 48%, rgba(255, 255, 255, .95) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: var(--shell);
  margin: clamp(.65rem, 2vw, 1rem) auto clamp(1rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(.7rem, 1.8vw, 1rem);
  padding: 1.5rem;

}
main.container {
  flex: 1 0 auto;
}
.container > .site-footer,
body > .site-footer {
  margin-top: auto;
}
body[data-page="account"] {
  --account-layout-offset: 70px;
  overflow-x: hidden;
}
body[data-page="account"] .container {
  --account-content-max: min(var(--shell), calc(100vw - var(--account-layout-offset) - .8rem));
  width: var(--account-content-max);
  max-width: var(--account-content-max);
  margin-left: calc(var(--account-layout-offset) + .4rem + ((100vw - var(--account-layout-offset) - .8rem - var(--account-content-max)) / 2));
  margin-right: .4rem;
}
.auth-container {
  width: min(560px, 100% - 1rem);
}
.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(.7rem, 1.8vw, 1rem);
  align-items: start;
}
.layout.layout-single {
  grid-template-columns: 1fr;
}
.main-col {
  display: grid;
  gap: .8rem;
}
.side-col {
  display: grid;
  gap: .8rem;
}
.group-record-card {
  position: relative;
  margin-bottom: .6rem;
}
.group-record-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid rgba(255, 255, 255, 1);
}
.group-record-card.is-empty::after {
  content: none;
}
#group-origin-section {
  margin-top: -32px;
  position: relative;
  z-index: 0;
}
.group-origin-message {
  display: block;
}
.group-origin-message .msg-shell {
  margin-bottom: 0;
}
.group-origin-message .msg {
  background: color-mix(in srgb, var(--accent) 20%, white);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 2rem 1rem .75rem;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .65rem;
  padding: .5rem 0;
  flex-wrap: nowrap;
  border-bottom: 1px dotted rgba(0, 0, 0, .1);
}
.topbar a { color: var(--accent); text-decoration: none; font-weight: 600; }
.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
}
.topbar-actions form {
  display: inline-flex;
}
.topbar-user-pill {
  display: inline-flex;
  align-items: center;
  gap: .36rem;
  min-width: 0;
  border-radius: 999px;
  padding: .25rem .25rem .25rem .6rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
}
.topbar-user-pill .material-symbols-rounded {
  font-size: 18px;
  line-height: 1;
}
.topbar-user-pill.is-auth {
  color: var(--accent);
  background: rgba(255, 255, 255, 1);
  border-color: color-mix(in srgb, var(--accent) 28%, white);
}
.topbar-user-pill.is-guest {
  color: var(--muted);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, .15);
}
.topbar-user-name {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-user-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border-radius: 999px;
  background: var(--accent);
  color: rgba(255, 255, 255, 1);
  margin-left: .2rem;
  text-decoration: none;
  animation: bell-pulse .5s ease-in-out infinite;
}
.topbar a.topbar-user-bell,
.topbar a.topbar-user-bell:visited,
.topbar a.topbar-user-bell:hover {
  color: rgba(255, 255, 255, 1);
}
.topbar-user-bell .material-symbols-rounded {
  font-size: 17px;
  line-height: 1;
}
@keyframes bell-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .25;}
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--accent);
  text-decoration: none;
}
.brand img {
  width: 120px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.brand svg {
  width: 120px;
  max-width: 100%;
  height: auto;
  display: block;
}
.brand .voxoli-accent-layer {
  fill: var(--accent);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-footer {
  margin-top: 1rem;
  padding: .35rem 0 .1rem;
  text-align: center;
}
.site-footer p {
  margin: 0;
}
.site-footer-top,
.site-footer-bottom {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}
body .site-footer-bottom,
body .site-footer-legal {
  display: block;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
body .site-footer {
  display: grid;
  justify-items: center;
}
.site-footer-legal {
  padding: 2rem;
  color: rgba(0, 0, 0, .5);
  font-size: .75rem;
  line-height: 1.35;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.site-footer-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
  flex-wrap: wrap;
}
.site-footer-top a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: .2rem .6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .1);
}
.site-footer-top a:hover {
  color: var(--accent);
}
.card {
  background: var(--card);
  border-radius: 16px;
  padding: clamp(.8rem, 2vw, 1rem);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .15);
}
.group-banner {
  background: var(--accent);
  color: rgba(255, 255, 255, 1);
  width: 100%;
}
.group-banner-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
}
.group-pending-modal-card .auth-modal-icon {
  color: var(--accent);
}
.group-pending-modal-card {
  background: transparent !important;
  border-radius: 0;
  box-shadow: none !important;
  padding: 0;
  border: none;
}
.group-pending-modal-card .auth-modal-x {
  display: none;
}
.group-pending-modal-card h3,
.group-pending-modal-card p {
  color: rgba(255, 255, 255, 1);
}
.group-banner-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
}
.group-banner-title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  min-width: 0;
}
.group-banner-slug {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}
.group-banner-lock {
  font-size: clamp(1.8rem, 5.4vw, 2rem);
  line-height: 1;
}
[data-group-leader="1"] .group-banner-lock {
  cursor: pointer;
}
[data-auth-user="1"] #group-hero-favorite {
  cursor: pointer;
}
#group-hero-favorite {
  color: rgba(255, 255, 255, .5);
  transition: color .15s ease;
}
#group-hero-favorite.is-active {
  color: rgba(255, 255, 255, 1);
}
[data-group-leader="1"] #group-hero-description {
  cursor: text;
  display: block;
  max-width: 100%;
  border-radius: 8px;
  padding: .42rem .9rem;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .2);
}

[data-group-leader="1"] #group-hero-description.is-editing {
  opacity: 1;
  background: rgba(255, 255, 255, 1);
  color: var(--accent);
  border: none;
  outline: none;
}
.group-banner-icons {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-left: auto;
  flex-wrap: wrap;
}
#group-hero-qr {
  cursor: pointer;
}
.group-banner-tabs {
  margin-top: .55rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .45rem;
  flex-wrap: wrap;
}
.group-banner-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .32rem;
  padding: .3rem .55rem;
  line-height: 1;
  border-radius: 8px;
  background: rgba(0, 0, 0, .25);
  color: rgba(255, 255, 255, 1);
  box-shadow: none;
}
.group-banner-tab-left {
  justify-content: flex-start;
}
.group-banner-tab-right {
  justify-content: flex-start;
}
.group-banner-tab-expiry {
  margin-left: auto;
}
.group-banner-tab-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.group-banner-tab-icon {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
}
#group-hero-private.group-banner-tab-icon,
#group-hero-lock.group-banner-tab-icon,
#group-hero-expiry.group-banner-tab-icon {
  font-size: 1.25rem;
}
[data-group-leader="1"] .group-banner-tab-icon {
  cursor: pointer;
}
.group-banner-meta {
  margin-top: .75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-top: 1px dotted rgba(255, 255, 255, .25);
  padding: .75rem 0;
  font-size: 0.85rem;
  opacity: 1;
  align-items: center;
}
.group-banner-meta span {
  min-width: 0;
}
.hero {
  border-color: var(--line);
  background: rgba(255, 255, 255, 1);
}
.hero h1 {
  margin: 0 0 .4rem;
  line-height: 1.2;
  font-size: 1.35rem;
  font-weight: 650;
}
.leader-badge {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  margin: 0;
  border-radius: 999px;
  background:  var(--accent);
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.leader-badge-row {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
}
.hero p {
  margin: 0;
  color: var(--muted);
}
.qr-logo-wrap {
  position: relative;
  display: block;
}
.qr-logo-wrap::after {
  content: none;
}
.group-info-qr {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}
.qr-modal[hidden] {
  display: none;
}
.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
}
.qr-modal-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 380px);
  display: grid;
  gap: .85rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.qr-modal-qr-wrap {
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.qr-modal-qr {
  width: min(100%, 280px);
  margin: 0 auto;
}
.qr-modal-link {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  word-break: break-all;
  font-weight: 700;
  font-size: .9rem;
  margin: 2rem 0;
  opacity: .5;
}

.qr-modal-note {
  margin: 2rem;
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  white-space: pre-line;
}
.group-admin-panel {
  display: grid;
  gap: .7rem;
}
.group-admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.group-admin-card {
  margin-top: .55rem;
}
.group-admin-panel h3 {
  margin: 0;
  font-size: .95rem;
}
.group-admin-qr-trigger {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: rgba(255, 255, 255, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.group-admin-qr-trigger .material-symbols-rounded {
  font-size: 20px;
}
.group-admin-form {
  display: grid;
  gap: .35rem;
}
.group-admin-form textarea,
.group-admin-form input[type="text"],
.group-admin-form input:not([type]),
.group-admin-form input[type="search"] {
  width: 100%;
  background-color: rgba(0, 0, 0, .1);
  border: none;
  border-radius: 8px;
  padding: .5rem;
  resize: none;
  outline: none;
  font-family: "Quicksand", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
.group-admin-inline {
  display: flex;
  gap: 0;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.group-admin-inline input {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 0;
  min-height: 42px;
}
#group-admin-invite {
  border-radius: 0;
}
.group-admin-inline button {
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
  border-radius: 0;
  min-height: 42px;
}
.group-admin-members {
  display: grid;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, .15);
}

.group-admin-member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .35rem;
  font-size: .85rem;
  line-height: 1.2;
  padding: .35rem 0;
}
.group-admin-member-row > form,
.group-admin-member-row > .meta {
  margin-left: auto;
  flex: 0 0 auto;
}
.group-admin-member-row > form {
  width: auto;
}
.group-admin-member-row button {
  width: auto;
  padding: .5rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: rgba(0, 0, 0, .95);
  color: rgba(255, 255, 255, 1);
  border: 0;
}
.group-admin-member-row button .material-symbols-rounded {
  font-size: 18px;
}
.group-member-left {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-width: 0;
  flex: 1 1 auto;
}
.group-member-status {
  font-size: 20px;
  line-height: 1;
}
.group-member-status.is-active {
  color: green;
}
.group-member-status.is-banned {
  color: red;
}
.group-member-status.is-pending {
  color: rgba(0, 0, 0, .4);
}
.group-member-status.is-refused {
  color: orange;
}
.top-group {
  display: block;
  padding: .5rem .55rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 1);
  margin-bottom: .45rem;
}
.home-search-card {
  display: grid;
  gap: .7rem;
  padding: 1rem 0;
  background: transparent;
}
.home-trending-card {
  background: transparent;
  box-shadow: none;
}
.home-search-card h1 {
  margin: 0;
  font-size: clamp(1.45rem, 4.2vw, 1.65rem);
  line-height: 1.1;
}
.group-inline-large {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  z-index: 1;
}
.group-inline-large .group-input-wrap {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.group-inline-large input {
  font-size: 1.05rem;
  display: block;
  min-height: 48px;
  padding: 0 1rem;
  line-height: 48px;
  border-radius: 12px 0 0 12px;
  border-right: none;
}
.group-inline-large input::placeholder {
  opacity: .55;
}
.group-inline-large button {
  padding: .78rem 1.1rem;
  border-radius: 0 12px 12px 0;
  font-weight: 700;
  min-height: 52px;
  border-left: 0;
  margin-left: -1px;
}
.home-trending-card {
  display: grid;
  background: transparent;
  gap: .7rem;
}
.home-trending-card h2 {
  margin: 0;
}
.home-my-groups-inline {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  margin-top: .15rem;
}
.home-my-groups-inline a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 34px;
  padding: .25rem .5rem;
  border-radius: 999px;
  font-size: .8rem;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 14%, transparent);
}
.home-my-groups-subpill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 .35rem;
  border-radius: 999px;
  font-size: .7rem;
  line-height: 1;
  color: rgba(255, 255, 255, 1);
  background: color-mix(in srgb, var(--accent) 72%, rgba(0, 0, 0, .95));
}
.trending-groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: .65rem;
}
.trending-group-item {
  display: grid;
  gap: .3rem;
}
.trending-group-card {
  display: grid;
  color: rgba(255, 255, 255, 1);
  background: var(--accent);
  gap: .4rem;
  margin: 0;
  text-align: center;
  opacity: .9;
  border-radius: 18px;
  padding: .75rem;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--accent) 14%, transparent);
}
.trending-group-card:hover {
  opacity: 1;
}
.trending-group-card strong {
  margin-bottom: .1rem;
}
.trending-group-qr {
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: var(--accent);
  padding: .8rem;
}
.trending-group-link {
  display: block;
  color: var(--accent);
  word-break: break-all;
  text-align: center;
  font-size: .85rem;
  opacity: .75;
}
.top-group strong {
  font-size: 1rem;
  display: block;
  margin-bottom: .1rem;
  font-weight: 600;
}
.top-group small {
  font-size: .65rem;
}
.cgu-shell {
  display: grid;
  gap: .7rem;
  max-width: 900px;
  margin: 0 auto;
}
.cgu-shell h1,
.cgu-shell h2 {
  margin: 0;
}
.cgu-shell p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.cgu-table-wrap {
  overflow-x: auto;
}
.cgu-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 1);
  border-radius: 12px;
  overflow: hidden;
}
.cgu-table th,
.cgu-table td {
  padding: .6rem .65rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: normal;
}
.cgu-table th {
  color: var(--muted);
  font-weight: 700;
  font-size: .8rem;
}
.cgu-table tbody tr:last-child td {
  border-bottom: none;
}
form { display: grid; gap: .5rem; }
.auth-card h2 {
  margin: 0 0 .3rem;
}
.auth-card {
  text-align: center;
}
body[data-page="login"] .auth-card {
  background: transparent;
  border: none;
  box-shadow: none;
}
.auth-form {
  width: min(420px, 100%);
  margin: 0 auto;
}
.auth-note {
  margin: 0 0 .55rem;
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}
.auth-switch {
  margin: .45rem 0 0;
  font-size: .9rem;
  color: var(--muted);
  text-align: center;
}
.auth-switch a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.auth-disclaimer {
  margin: .35rem 0 0;
  text-align: center;
  font-size: .8rem;
  line-height: 1.35;
  color: var(--accent);
}
.password-group-start {
  margin-top: .85rem;
}
.password-field {
  position: relative;
}
.password-field input {
  width: 100%;
  padding-right: 2.2rem;
}
button.password-toggle {
  position: absolute;
  right: .34rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .5;
}
button.password-toggle:hover {
  background: transparent;
  opacity: .9;
}
button.password-toggle .material-symbols-rounded {
  font-size: 20px;
  line-height: 1;
  display: block;
}
.password-rules {
  margin: .25rem .1rem;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.35;
}
.password-rules strong {
  color: var(--ink);
  display: block;
  margin-bottom: .2rem;
}
.password-rules ul {
  margin: 0;
  padding-left: 1.05rem;
}
.password-checklist {
  list-style: none;
  padding-left: 0 !important;
  display: grid;
  gap: .2rem;
}
.password-checklist li {
  display: inline-flex;
  margin:.1rem .25rem;
  align-items: center;
  gap: .42rem;
  color: var(--muted);
}
.password-checklist .rule-icon {
  font-size: 22px;
  line-height: 1;
  color: rgba(0, 0, 0, .1);
}
.password-checklist li.is-ok {
  color: #1c8f4c;
}
.password-checklist li.is-ok .rule-icon {
  color: #1c8f4c;
}
input, button {
  font: inherit;
  padding: .5rem .65rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .15);
}
select {
  font: inherit;
  padding: .45rem .6rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: rgba(255, 255, 255, 1);
  color: var(--ink);
}
.account-shell {
  --account-sidebar-min-offset: 70px;
  --account-sidebar-extra-offset: 0px;
  position: relative;
  display: block;
  min-height: 0;
  padding-left: 0;
  transition: none;
}
.account-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: .8rem;
  padding: .75rem;
  background: rgba(255, 255, 255, .7);
  border-right: 1px solid rgba(0, 0, 0, .05);
  backdrop-filter: blur(10px);
  z-index: 30;
}
.account-nav {
  display: grid;
  grid-template-columns: 1fr;
  overflow: visible;
  gap: .15rem;
  align-content: start;
  justify-items: start;
  padding: 0 !important;
  background: transparent;
  border: none;
  box-shadow: none;
}
.account-sidebar-footer {
  display: grid;
  align-content: end;
}
.account-sidebar-footer form {
  display: block;
  margin: 0;
}
.account-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: start;
  justify-self: start;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  padding: .25rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}
button.account-nav-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  width: 100%;
  min-width: 0;
  min-height: 34px;
  background: transparent;
  color: var(--ink);
  border: none;
  text-align: left;
  font-weight: 600;
  padding: .25rem;
  border-radius: 999px;
}
.account-nav-icon {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  overflow: visible;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: .9rem;
  line-height: 1;
  opacity: 1;
}
.account-nav-toggle .material-symbols-rounded {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  font-size: .9rem;
  line-height: 1;
}
.account-nav-text {
  flex: 1 1 auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-nav-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  font-family: "Quicksand", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1;
}
.account-nav-icon .account-nav-badge {
  position: absolute;
  top: -.2rem;
  right: -.2rem;
  font-size: .6rem;
  background: var(--accent);
  color: rgba(255, 255, 255, 1);
}
.account-sidebar.is-collapsed .account-nav-text {
  display: none;
}
.account-sidebar.is-collapsed .account-nav-toggle .material-symbols-rounded {
  transform: scaleX(-1);
}
button.account-nav-btn.is-active {
  background: transparent;
  color: var(--accent);
}
button.account-nav-btn.is-active .account-nav-icon {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-color: color-mix(in srgb, var(--accent) 18%, transparent);
}
button.account-nav-btn.is-quiet:hover {
  background: transparent;
}
button.account-nav-btn.is-quiet:hover .account-nav-icon,
.account-nav-toggle:hover {
  background: rgba(0, 0, 0, .05);
}
.account-nav-toggle:hover .material-symbols-rounded {
  background: transparent;
}
.account-nav-btn-logout {
  background: rgba(0, 0, 0, .9);
  color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, .1);
}
.account-nav-btn-logout .account-nav-icon {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
  opacity: 1;
}
.account-nav-btn-logout:hover {
  background: rgba(0, 0, 0, 1);
}
.account-nav-btn-logout .account-nav-icon,
.account-nav-btn-logout .account-nav-text {
  color: inherit;
}
.account-nav-toggle:hover {
  background: rgba(0, 0, 0, .05);
}
.account-main {
  min-width: 0;
  display: grid;
  gap: .8rem;
  transition: none;
}
.account-main section{
  margin-top: 20px;
}
.account-panel h2 {
  margin: 0 0 .5rem;
}
.account-panel-plain {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
body.account-has-nav .account-panel {
  display: none;
}
body.account-has-nav .account-panel.is-active {
  display: block;
}
.account-scroll {
  max-height: none;
  overflow: auto;
  padding-right: .1rem;
}
.account-list {
  display: grid;
  gap: .65rem;
}
.account-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  padding: .6rem;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, .05);
}
.account-row-main {
  min-width: 0;
  display: grid;
  gap: .25rem;
}
.account-row-main audio {
  width: min(420px, 100%);
  margin-top: .15rem;
}
.account-row-title {
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
}
.account-message-group-link {
  color: var(--accent);
  text-decoration: none;
}
.account-message-group-link:hover {
  text-decoration: underline;
}
.account-row-sub {
  margin: .25rem 0 0;
  font-size: .8rem;
  color: var(--muted);
}
.account-group-vocals-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.2rem;
  padding: 0 .45rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .1);
  color: rgba(0, 0, 0, .55);
  font-size: .7rem;
  line-height: 1;
  font-weight: 600;
}
.account-row-actions {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.account-row-actions form {
  display: inline-flex;
}
.account-plan-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
}
.account-message-delete-form {
  margin-left: auto;
}
#account-panel-messages .feed-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
}
#account-panel-messages .feed-btn .material-symbols-rounded {
  font-size: 18px;
}
.invite-action-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.invite-action-btn .material-symbols-rounded {
  font-size: 18px;
  line-height: 1;
}
.invite-action-btn.is-accept {
  background: #1d8f4a;
  border-color: #1d8f4a;
  color: rgba(255, 255, 255, 1);
}
.invite-action-btn.is-refuse {
  background: #cf144a;
  border-color: #cf144a;
  color: rgba(255, 255, 255, 1);
}
.account-group-form {
  display: grid;
  gap: .45rem;
  width: 100%;
}
.account-group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .6rem;
}
.account-group-title {
  min-width: 0;
  flex: 1 1 auto;
}
.account-group-top {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
  flex: 0 0 auto;
  margin-left: auto;
}
.account-group-link {
  color: var(--accent);
  text-decoration: none;
}
.account-group-link:hover {
  text-decoration: underline;
}
.account-group-icon-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.account-group-icon-btn.is-active {
  background: color-mix(in srgb, var(--accent) 10%, white);
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 40%, white);
}
.account-group-icon-btn.is-indicator {
  cursor: default;
  pointer-events: none;
}
.account-group-icon-btn .material-symbols-rounded {
  font-size: 18px;
  line-height: 1;
}
.account-group-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 8px;
  padding: .5rem .65rem;
  resize: vertical;
  min-height: 62px;
}
.danger-btn {
  background: #cf144a;
  color: rgba(255, 255, 255, 1);
}
.danger-btn:hover {
  background: #b50f40;
}
.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.confirm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, .45);
}
.confirm-modal-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 360px);
  background: rgba(255, 255, 255, 1);
  border-radius: 12px;
  padding: .9rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
  display: grid;
  gap: .75rem;
}
.confirm-modal-text {
  margin: 0;
  font-weight: 600;
}
.confirm-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
}
.confirm-modal-ok {
  background: #cf144a;
  color: rgba(255, 255, 255, 1);
  border-color: #cf144a;
}
.group-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}
.group-input-wrap {
  position: relative;
  border: 2px solid var(--accent);
  border-radius: 12px 0 0 12px;
  overflow: visible;
  min-height: 52px;
}
.group-input-wrap input {
  width: 100%;
  border: none;
  outline: none;
  box-shadow: none;
  background: color-mix(in srgb, var(--accent) 5%, transparent);
}
.group-input-wrap input:focus,
.group-input-wrap input:focus-visible {
  outline: none;
  box-shadow: none;
}
.group-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 8px);
  background: rgba(255, 255, 255, 1);
  border-radius: 0 0 14px 14px;
  padding: 1rem .35rem .35rem;
  z-index: -1;
  box-shadow:
    inset 0 14px 14px -10px rgba(0, 0, 0, .3),
    0 16px 28px rgba(0, 0, 0, .1);
}
.group-suggestion {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--ink);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  border-radius: 10px !important;
  margin-top: 0;
  min-height: auto !important;
  padding: .35rem .5rem !important;
  cursor: pointer;
}
.group-suggestion:hover {
  background: color-mix(in srgb, var(--accent) 6%, transparent);
}
.group-suggestion strong {
  display: block;
  font-size: .9rem;
  line-height: 1.2;
}
.group-suggestion-main {
  min-width: 0;
}
.group-suggestion small.group-suggestion-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 24px;
  padding: .15rem .5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .05);
  color: var(--muted);
  font-size: .7rem;
  line-height: 1;
  margin-top: 0;
}
.record-panel {
  display: grid;
  gap: .45rem;
}
.record-legal-title {
  padding-bottom: 0.25rem;
  margin: 0;
  font-size: 1.5rem;
}
.record-legal-note {
  margin: 0 0 .75rem;
  padding: 0.5rem 0;
  font-size: .8rem;
  line-height: 1.35;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  color: var(--muted);
}
.record-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}
.record-gauge {
  position: relative;
  flex: 1 1 auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .05);
  overflow: hidden;
}
.record-gauge::before {
  --barber-tile: 12px;
  --barber-shade-on: color-mix(in srgb, var(--accent) 34%, white);
  --barber-shade-off: color-mix(in srgb, var(--accent) 8%, rgba(255, 255, 255, .95));
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: linear-gradient(
    -45deg,
    var(--barber-shade-on) 0 25%,
    var(--barber-shade-off) 25% 50%,
    var(--barber-shade-on) 50% 75%,
    var(--barber-shade-off) 75% 100%
  );
  background-size: var(--barber-tile) var(--barber-tile);
  background-repeat: repeat;
  background-position: 0 0;
  opacity: 0;
  will-change: background-position;
  transition: opacity .15s ease;
  pointer-events: none;
}
#record-btn.is-recording + .record-gauge::before {
  opacity: .5;
  animation: gauge-barber .32s linear infinite;
}
.record-gauge-fill {
  position: relative;
  z-index: 1;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .05s linear;
}
@keyframes gauge-barber {
  from { background-position: 0 0; }
  to { background-position: var(--barber-tile) 0; }
}
.round-btn {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  -webkit-font-smoothing: antialiased;
}
.material-symbols-rounded.is-outline {
  font-variation-settings: 'FILL' 0;
}
.material-symbols-rounded.is-filled {
  font-variation-settings: 'FILL' 1;
}
.account-nav .account-nav-icon.material-symbols-rounded,
.account-sidebar > .account-nav-toggle .material-symbols-rounded,
.account-sidebar-footer .account-nav-icon.material-symbols-rounded {
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
}
.record-btn {
  background: rgba(255, 255, 255, 1);
  color: var(--accent);
}
.group-record-card .round-btn {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
}
.group-record-card .round-btn .material-symbols-rounded {
  font-size: 20px;
}
.record-btn.is-recording {
  background: var(--accent);
  color: rgba(255, 255, 255, 1);
}
.send-btn {
  background: var(--accent);
  color: rgba(255, 255, 255, 1);
}
.send-btn[disabled] {
  background: rgba(255, 255, 255, .95);
  color: rgba(0, 0, 0, .3);
  border-color: rgba(0, 0, 0, .1);
  opacity: 1;
}
.ghost-btn {
  background: rgba(255, 255, 255, 1);
  color: var(--muted);
  border-color: rgba(0, 0, 0, .15);
}
.ghost-btn[disabled] {
  background: rgba(255, 255, 255, .96);
  color: rgba(0, 0, 0, .3);
  border-color: rgba(0, 0, 0, .1);
  opacity: 1;
}
button {
  background: var(--accent);
  color: rgba(255, 255, 255, 1);
  border-color: transparent;
  cursor: pointer;
}
button[disabled] { opacity: .5; cursor: not-allowed; }
.meta { display: flex; gap: .65rem; font-size: .85rem; color: var(--muted); margin: .3rem 0; }
.flash { display: none; }
#flash-stack {
  position: fixed;
  left: auto;
  right: .5rem;
  top: 1rem;
  z-index: 5000;
  display: grid;
  gap: .45rem;
  justify-items: end;
  width: min(420px, calc(100vw - 1rem));
  max-width: calc(100vw - 1rem);
  transform: none;
  pointer-events: none;
}
.flash-toast {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .55rem;
  padding: .6rem .6rem .6rem .68rem;
  border-radius: 10px;
  border: none;
  background: rgba(0, 0, 0, .95);
  box-shadow: 0 10px 28px rgba(22, 27, 34, .2);
  font-size: .85rem;
  color: rgba(255, 255, 255, 1);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
  width: fit-content;
  max-width: 100%;
  pointer-events: auto;
}
.flash-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.auth-modal[hidden] {
  display: none;
}
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .9);
}
.auth-modal-card {
  position: relative;
  width: min(420px, calc(100% - 1rem));
  margin: 0 auto;
  background: rgba(255, 255, 255, 1);
  border-radius: 12px;
  padding: 1rem .95rem .9rem;
  box-shadow: 0 16px 40px rgba(20, 24, 30, .25);
  text-align: center;
  animation: authModalIn .2s ease-out;
}
.auth-modal-card h3 {
  margin: .2rem 0 .4rem;
}
.auth-modal-card p {
  margin: 0;
  line-height: 1.4;
}
.auth-modal-actions {
  margin: 1rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.auth-modal-link {
  margin-top: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, .6);
  opacity: .5;
  font-size: .85rem;
  text-decoration: underline;
  cursor: pointer;
}
.guest-warning-modal-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 2rem;
}
.guest-warning-modal-card h2,
.guest-warning-modal-card p,
.guest-warning-modal-card .auth-modal-link {
  color: rgba(255, 255, 255, 1);
}
.guest-warning-modal-card .auth-modal-actions .auth-modal-btn:not(.ghost) {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, 1);
}
.guest-warning-modal-card .auth-modal-actions .auth-modal-btn.ghost {
  background: var(--accent);
  color: rgba(255, 255, 255, 1);
}
.auth-modal-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto .4rem;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 1);
}
.auth-modal-icon {
  font-size: 54px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0;
}
.auth-modal-x {
  position: absolute;
  top: .35rem;
  right: .35rem;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.auth-modal-x:hover {
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
}
.auth-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: .42rem .68rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  background: rgba(255, 255, 255, 1);
  color: var(--muted);
  cursor: pointer;
}
.auth-modal-btn.ghost {
  background: var(--accent);
  color: rgba(255, 255, 255, 1);
}
@keyframes authModalIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.flash-toast.flash-error {
  background: rgba(0, 0, 0, .95);
}
.flash-toast.flash-success {
  background: rgba(0, 0, 0, .95);
}
.flash-toast-text {
  min-width: 0;
  line-height: 1.3;
}
button.flash-toast-close {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, .5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}
button.flash-toast-close:hover {
  background: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, 1);
}
.msg {
  border-radius: 13.5px;
  padding: .8rem;
  margin-bottom: 0;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border: 2px solid color-mix(in srgb, var(--accent) 15%, transparent);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .7rem;
}
.msg-shell {
  position: relative;
  display: block;
  margin-bottom: 1rem;
  opacity: 1;
}
.msg-shell.msg-guest {
  opacity: .5;
}
.msg-shell.msg-reported {
  opacity: .25;
}
.msg-shell.is-inserting {
  opacity: 0;
  transform: translateY(-14px) scale(.985);
}
.msg-shell.is-inserting.is-inserted {
  transition: transform .25s ease, opacity .25s ease;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.msg-shell.msg-listened .msg {
  background: rgba(0, 0, 0, .1);
  border-color: rgba(0, 0, 0, .1);
}
.msg-play {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.msg-center {
  min-width: 0;
  display: grid;
  gap: .3rem;
}
.msg-author-line {
  display: inline-flex;
  align-items: center;
  gap: .1rem;
  color: var(--accent);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1;
  text-align: left;
}
.msg-author-name {
  display: inline-block;
}
.msg-author-name.is-guest {
  opacity: .5;
}
.msg-author-verified {
  font-size: 1.25rem;
  line-height: 1;
  color: currentColor;
}
.msg-shell.msg-listened .msg-author-line {
  color:rgba(0, 0, 0, .95);
}
.msg-date-line {
  color: var(--accent);
  opacity: .5;
  font-size: .6rem;
  font-weight: 600;
  line-height: 1;
  text-align: right;
}
.msg-shell.msg-listened .msg-date-line {
  color: rgba(0, 0, 0, .95);
}
.msg {
  position: relative;
  z-index: 2;
}
.msg-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.msg-duration-line {
  color: var(--accent);
  opacity: .6;
  font-size: .6rem;
  font-weight: 700;
  line-height: 1;
  text-align: left;
}
.msg-shell.msg-listened .msg-duration-line {
  color: rgba(0, 0, 0, .95);
}
.msg-status-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: auto;
  bottom: 1px;
  right: 1px;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  color: var(--accent);
  pointer-events: none;
}
.msg-shell.msg-listened .msg-status-indicator {
  color: rgba(0, 0, 0, .95);
}
.msg-status-indicator .material-symbols-rounded {
  font-size: 22px;
  line-height: 1;
  display: block;
  margin: 0;
}
.msg-status-indicator .material-symbols-rounded.is-outline {
  animation: bell-pulse .5s ease-in-out infinite;
}
.msg-status-indicator .material-symbols-rounded.is-filled {
  animation: bell-pulse .5s ease-in-out infinite;
}
.msg-shell .feed-btn {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 24%, transparent);
}
.msg-shell.msg-listened .feed-btn {
  color: rgba(0, 0, 0, .95);
  border-color: rgba(0, 0, 0, .2);
}
.msg-shell .feed-btn .material-symbols-rounded {
  color: inherit;
}
.msg-progress {
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  overflow: hidden;
}
.msg-progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .1s linear;
}
.msg-shell.msg-listened .msg-progress {
  background: rgba(0, 0, 0, .1);
}
.msg-shell.msg-listened .msg-progress-fill {
  background: rgba(0, 0, 0, .95);
}
.msg-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .3rem;
}
.feed-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 999px;
  padding: 0;
}
.feed-btn .material-symbols-rounded {
  font-size: 18px;
}
.msg header {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  align-items: center;
  margin-bottom: .35rem;
}
.msg .votes { display: inline-flex; gap: .3rem; }
.msg .votes button { padding: .24rem .4rem; font-size: .8rem; }
.m-neutral {
  background-color: rgba(0, 0, 0, .05);
}
