/* ==========================================================================
   Shared chrome overlays — contact, donate, links, legal, team chat
   Requires tokens.css (+ surface --z-overlay) before this sheet.
   ========================================================================== */

body.consent-open,
body.donation-overlay-open,
body.team-chat-open,
body.links-panel-open,
body.legal-overlay-open,
body.has-contact-open,
body.result-overlay-open,
body.rhymes-overlay-open {
  overflow: hidden;
}

@keyframes consent-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes consent-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: consent-fade-in 280ms ease;
}

.consent-overlay.is-closing {
  animation: consent-fade-out 300ms ease forwards;
}

.consent-card {
  width: 100%;
  max-width: min(34rem, calc(100vw - 2.5rem));
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.consent-card--legal {
  display: flex;
  flex-direction: column;
  max-width: min(56rem, calc(100vw - 1.5rem));
  max-height: calc(100dvh - 1.5rem);
  overflow: hidden;
  padding: 0.75rem 1rem 0.65rem;
}

.legal-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.legal-overlay-title,
.consent-card--legal .consent-title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.legal-overlay-title {
  flex: 1;
}

.legal-overlay-close {
  flex-shrink: 0;
  min-height: 2rem;
  min-width: 4.5rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.legal-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.consent-card--legal:not(.has-details-open) .legal-scroll {
  overflow-y: auto;
}

.legal-footer {
  flex-shrink: 0;
  padding-top: 0.45rem;
  margin-top: 0.35rem;
  border-top: 1px solid var(--border);
}

.legal-body {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text);
}

.legal-body h1 { font-size: 1.15rem; margin: 0 0 0.75rem; }
.legal-body h2 {
  font-size: 1rem;
  margin: 1.35rem 0 0.5rem;
  text-transform: none;
  letter-spacing: normal;
  opacity: 1;
}
.legal-body h3 { font-size: 0.92rem; margin: 1rem 0 0.4rem; }
.legal-body p,
.legal-body li { margin: 0 0 0.65rem; }
.legal-body ul,
.legal-body ol {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
}
.legal-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}
.legal-body a { color: var(--accent); }

.legal-loading,
.legal-error {
  color: var(--muted);
}

.legal-body--plain {
  font-size: 0.84rem;
  line-height: 1.45;
}

.legal-plain-hero {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.legal-plain-intro p {
  margin: 0 0 0.4rem;
}

.legal-plain-intro p:last-child {
  margin-bottom: 0;
}

.legal-plain-grid {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.legal-plain-section {
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-plain-section h2 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 0.3rem;
  opacity: 0.72;
}

.legal-plain-section p,
.legal-plain-section li {
  margin: 0 0 0.28rem;
  font-size: 0.8rem;
  line-height: 1.4;
}

.legal-plain-section ul {
  margin: 0;
  padding-left: 1rem;
}

.legal-plain-section--highlights {
  background: rgba(201, 168, 124, 0.1);
  border-color: rgba(201, 168, 124, 0.28);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
}

.legal-plain-section--highlights h2 {
  opacity: 0.9;
  color: var(--accent);
}

.legal-plain-section--highlights ul {
  margin: 0.15rem 0 0.25rem;
}

.legal-plain-section--highlights li {
  font-size: 0.81rem;
  margin-bottom: 0.2rem;
}

.legal-plain-section--highlights li strong {
  font-weight: 600;
}

.legal-details-toggle-wrap {
  margin: 0;
  padding: 0;
  border: none;
}

.legal-details-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.125rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  text-align: left;
}

.legal-details-toggle:hover {
  background: rgba(201, 168, 124, 0.12);
  border-color: rgba(201, 168, 124, 0.35);
}

.legal-details-toggle__chevron {
  font-size: 0.58rem;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.legal-details-toggle.is-open .legal-details-toggle__chevron {
  transform: rotate(180deg);
}

.legal-details-panel {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px dashed var(--border);
}

.legal-details-panel__heading {
  font-size: 0.72rem;
  margin: 0 0 0.45rem;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-body--full {
  font-size: 0.8rem;
  line-height: 1.48;
  max-height: min(38vh, 20rem);
  overflow-y: auto;
}

.legal-body--full h1 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.legal-body--full h2 {
  font-size: 0.88rem;
  margin: 0.85rem 0 0.35rem;
}

@media (min-width: 52rem) and (min-height: 32rem) {
  .consent-overlay--legal {
    padding: 0.65rem 1rem;
  }

  .consent-card--legal {
    max-height: calc(100dvh - 1.25rem);
    padding: 0.65rem 1.1rem 0.55rem;
  }

  .consent-card--legal:not(.has-details-open) .legal-scroll {
    overflow: hidden;
  }

  .legal-body--plain {
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .legal-plain-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0.65rem 0.85rem;
    align-items: stretch;
    margin-bottom: 0.45rem;
  }

  .legal-plain-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .legal-plain-intro p {
    font-size: 0.79rem;
    margin-bottom: 0.35rem;
  }

  .legal-plain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.55rem;
  }

  .legal-plain-section {
    padding: 0.38rem 0.5rem;
  }

  .legal-plain-section h2 {
    font-size: 0.64rem;
    margin-bottom: 0.22rem;
  }

  .legal-plain-section p,
  .legal-plain-section li {
    font-size: 0.74rem;
    line-height: 1.35;
    margin-bottom: 0.18rem;
  }

  .legal-plain-section--highlights li {
    font-size: 0.75rem;
  }

  .legal-plain-section--wide {
    grid-column: 1 / -1;
    padding: 0.35rem 0.5rem;
  }

  .legal-plain-section--wide p {
    margin: 0;
    font-size: 0.74rem;
  }

  .legal-overlay-header {
    margin-bottom: 0.4rem;
  }

  .legal-footer {
    padding-top: 0.35rem;
    margin-top: 0.25rem;
  }

  .consent-card--legal.has-details-open .legal-body--full {
    max-height: min(42vh, 22rem);
  }
}

@media (max-width: 51.99rem) {
  .consent-card--legal {
    max-height: calc(100dvh - 1rem);
  }
}

.donation-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.donation-overlay__card {
  width: 100%;
  max-width: min(28rem, calc(100vw - 2rem));
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.donation-overlay__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.donation-overlay__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.donation-overlay__methods {
  list-style: none;
  margin: 0.25rem 0 0.35rem;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: left;
}

.donation-overlay__method {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
}

.donation-overlay__method-value-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  min-width: 0;
}

.donation-overlay__method-note {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
}

.donation-overlay__copy {
  flex-shrink: 0;
  padding: 0.25rem 0.55rem;
  font-size: 0.75rem;
  line-height: 1.2;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.donation-overlay__method-label {
  font-weight: 600;
  color: var(--text);
}

.donation-overlay__method-value {
  color: var(--muted);
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 11rem;
}

.donation-overlay__continue {
  width: 100%;
  margin-top: 0.25rem;
}

.links-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.links-panel-overlay__card {
  position: relative;
  width: 100%;
  max-width: min(26rem, calc(100vw - 2rem));
  max-height: min(88vh, 42rem);
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(165deg, rgba(18, 28, 46, 0.96) 0%, rgba(10, 22, 40, 0.98) 100%);
  border: 1px solid rgba(212, 132, 90, 0.35);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow:
    0 0 0 1px rgba(212, 132, 90, 0.08),
    0 20px 56px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(212, 132, 90, 0.06);
}

.links-panel-overlay__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.25rem;
  padding-bottom: 0.35rem;
}

.links-panel-overlay__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.links-panel-overlay__logo {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.links-panel-overlay__title {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.links-panel-overlay__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 132, 90, 0.25);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.links-panel-overlay__close svg {
  width: 1rem;
  height: 1rem;
}

.links-panel-overlay__close:hover {
  color: var(--text);
  background: rgba(212, 132, 90, 0.12);
  border-color: rgba(212, 132, 90, 0.45);
}

.links-panel-overlay__icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 0.5rem;
  justify-items: center;
  padding: 0.25rem 0.15rem 0;
}

.links-panel-overlay__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  color: var(--text);
  text-decoration: none;
  transition: transform var(--transition), filter var(--transition);
}

.links-panel-overlay__icon-link:hover {
  transform: scale(1.12);
}

.links-panel-overlay__icon-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.links-panel-overlay__icon {
  width: 2rem;
  height: 2rem;
}

.links-panel-icon--spotify { color: #1ed760; }
.links-panel-icon--spotify:hover { filter: drop-shadow(0 0 6px rgba(30, 215, 96, 0.45)); }
.links-panel-icon--apple { color: #fa586a; }
.links-panel-icon--apple:hover { filter: drop-shadow(0 0 6px rgba(250, 88, 106, 0.45)); }
.links-panel-icon--youtubeMusic { color: #ff4e45; }
.links-panel-icon--youtubeMusic:hover { filter: drop-shadow(0 0 6px rgba(255, 78, 69, 0.45)); }
.links-panel-icon--deezer { color: #a238ff; }
.links-panel-icon--deezer:hover { filter: drop-shadow(0 0 6px rgba(162, 56, 255, 0.45)); }
.links-panel-icon--boomplay { color: #00c7b1; }
.links-panel-icon--boomplay:hover { filter: drop-shadow(0 0 6px rgba(0, 199, 177, 0.45)); }
.links-panel-icon--shazam { color: #0088ff; }
.links-panel-icon--shazam:hover { filter: drop-shadow(0 0 6px rgba(0, 136, 255, 0.45)); }
.links-panel-icon--suno { color: #f0c040; }
.links-panel-icon--suno:hover { filter: drop-shadow(0 0 6px rgba(240, 192, 64, 0.45)); }
.links-panel-icon--youtube { color: #ff0033; }
.links-panel-icon--youtube:hover { filter: drop-shadow(0 0 6px rgba(255, 0, 51, 0.45)); }
.links-panel-icon--instagram { color: #e4405f; }
.links-panel-icon--instagram:hover { filter: drop-shadow(0 0 6px rgba(228, 64, 95, 0.45)); }
.links-panel-icon--tiktok { color: #25f4ee; }
.links-panel-icon--tiktok:hover { filter: drop-shadow(0 0 6px rgba(37, 244, 238, 0.35)); }
.links-panel-icon--facebook { color: #1877f2; }
.links-panel-icon--facebook:hover { filter: drop-shadow(0 0 6px rgba(24, 119, 242, 0.45)); }
.links-panel-icon--x { color: #e7e9ea; }
.links-panel-icon--x:hover { filter: drop-shadow(0 0 6px rgba(231, 233, 234, 0.3)); }

@media (max-width: 360px) {
  .links-panel-overlay__icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-form-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  margin: 0;
  padding: 1.25rem;
  border: none;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  color: var(--text);
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity var(--transition);
}

.contact-form-overlay[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-overlay.is-open {
  opacity: 1;
}

.contact-form-overlay.is-closing {
  opacity: 0;
}

.contact-form-overlay::backdrop {
  background: transparent;
}

.contact-form-panel {
  position: relative;
  width: 100%;
  max-width: 26rem;
  max-height: min(90vh, 36rem);
  overflow-y: auto;
  padding: 1.5rem 1.35rem 1.35rem;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.contact-form-overlay.is-open .contact-form-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-form-overlay.is-closing .contact-form-panel {
  transform: translateY(8px) scale(0.98);
  opacity: 0;
}

.contact-form-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--muted);
  border: none;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.contact-form-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  padding-right: 1.75rem;
}

.contact-form-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-form[hidden] {
  display: none !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form-field label {
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-text-fill-color: var(--text);
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.contact-form-field textarea {
  min-height: 6rem;
  resize: vertical;
}

.contact-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-status {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-form-status--error {
  color: #e8a090;
}

.contact-form-status--success {
  color: #8fd4a8;
}

.contact-form-status a {
  color: var(--accent);
}

.contact-form-submit {
  width: 100%;
  margin-top: 0.15rem;
}

.contact-form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.team-chat-panel {
  position: fixed;
  bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  left: 1rem;
  z-index: 210;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  width: min(22rem, calc(100vw - 2rem));
  height: min(25rem, 52dvh);
  background: rgba(12, 18, 32, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom left;
  transition: opacity var(--transition), transform var(--transition);
  overflow: hidden;
}

/* display:flex above overrides [hidden] — closed panel must not steal launcher hovers */
.team-chat-panel[hidden] {
  display: none !important;
}

.team-chat-panel:not(.is-visible) {
  pointer-events: none;
}

.team-chat-panel.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: var(--z-overlay);
}

.team-chat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.team-chat-header__title {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
}

.team-chat-header__status {
  font-size: 0.72rem;
  color: #e8a090;
}

.team-chat-header__close {
  padding: 0.35rem 0.55rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.team-chat-header__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.team-chat-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0.65rem 0.5rem 0.65rem 0.75rem;
  -webkit-overflow-scrolling: touch;
}

.team-chat-empty {
  margin: 0;
  padding: 1.5rem 0.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.team-chat-message {
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.4rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--chat-user-accent, var(--accent));
}

.team-chat-message__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.team-chat-message__user {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--chat-user-accent, var(--accent));
}

.team-chat-message__time {
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.team-chat-message__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  word-break: break-word;
  color: var(--text);
}

.team-chat-compose {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem 0.75rem;
  border-top: 1px solid var(--border);
}

.team-chat-compose__name,
.team-chat-compose__input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
  border-radius: 8px;
  resize: none;
}

.team-chat-compose__send {
  align-self: flex-end;
  min-width: 5.5rem;
}
