/**
 * Light Theme CSS Variables
 * 
 * This file mirrors LightThemeValues.ts for PhpStorm IntelliSense.
 * Actual values are injected at runtime via CustomThemeProvider.
 */

[data-theme="light"] {
  /* Theme-specific colors from LightThemeValues.ts */
  --color-primary: #4851f4;
  --color-background: #ffffff;
  --color-baseBackdropColor: #2c2d35;
  --color-text: #202224;
  --color-borderStroke: #ff00d6;
  --color-button: #000000;
  --color-buttonCancelBackground: #a61111;
  --color-borderStrokeDisabled: #deebf1;
  --color-buttonText: #ffffff;
  --color-messageText: #e4e6eb;
  --color-sidebar: #ffffff;
  --color-hoverBackground: rgba(137, 118, 134, 0.3);
  --color-selectedBackground: rgba(255, 0, 214, 0.2);
  --color-iconsBackground: #ff1010;
  --color-textShadow: 2px 0 #ff00d6, 0 2px #ff00d6, 2px 0 #ff00d6, 0 -2px #ff00d6;

  /* Shared colors (from BaseThemeValues.ts - same across themes) */
  --color-success: #38a169;
  --color-error: #e53e3e;
  --color-warning: #dd6b20;
  --color-info: #3182ce;
  --color-male: #2766f6;
  --color-female: #f70776;
  --color-transgender: #5bcefa;
  --color-other: #4b713f;
  --color-online: #28cd41;
  --color-offline: #ff3b30;
  --color-audioWaveform-wave: #ffffff;
  --color-audioWaveform-progress: #ffa3e0;
  --color-audioWaveform-cursor: #dd5e98;
  --color-messageStatus-sent: #219653;
  --color-messageStatus-delivered: #5e606f;
  --color-messageStatus-seen: #219653;
  --color-messageStatus-error: #e53e3e;
}

/**
 * Dark Theme CSS Variables
 * 
 * This file mirrors DarkThemeValues.ts for PhpStorm IntelliSense.
 * Actual values are injected at runtime via CustomThemeProvider.
 */

[data-theme="dark"] {
  /* Theme-specific colors from DarkThemeValues.ts */
  --color-primary: #191919;
  --color-background: linear-gradient(135deg, #191919, #0d1a2b, #191919);
  --color-baseBackdropColor: #2c2d35;
  --color-text: #ffffff;
  --color-borderStroke: #992580;
  --color-borderStrokeDisabled: #897686;
  --color-button: #992580;
  --color-buttonCancelBackground: #a61111;
  --color-buttonText: #ffffff;
  --color-messageText: #e4e6eb;
  --color-sidebar: #191919;
  --color-hoverBackground: rgba(137, 118, 134, 0.3);
  --color-selectedBackground: rgba(255, 0, 214, 0.2);
  --color-iconsBackground: #ff1010;
  --color-textShadow: 2px 0 #ff00d6, 0 2px #ff00d6, 2px 0 #ff00d6, 0 -2px #ff00d6;

  /* Shared colors (from BaseThemeValues.ts - same across themes) */
  --color-success: #38a169;
  --color-error: #e53e3e;
  --color-warning: #dd6b20;
  --color-info: #3182ce;
  --color-male: #2766f6;
  --color-female: #f70776;
  --color-transgender: #5bcefa;
  --color-other: #4b713f;
  --color-online: #28cd41;
  --color-offline: #ff3b30;
  --color-audioWaveform-wave: #ffffff;
  --color-audioWaveform-progress: #ffa3e0;
  --color-audioWaveform-cursor: #dd5e98;
  --color-messageStatus-sent: #219653;
  --color-messageStatus-delivered: #5e606f;
  --color-messageStatus-seen: #219653;
  --color-messageStatus-error: #e53e3e;
}

/**
 * Base Design Tokens
 * Static values that remain the same across all themes
 * Import this file in your app entry point for pure CSS Modules theming
 */

:root {
  /* Spacing Scale */
  --space-0: 0;
  --space-1: 2px;
  --space-2: 4px;
  --space-3: 8px;
  --space-4: 12px;
  --space-5: 16px;
  --space-6: 32px;
  --space-7: 64px;

  /* Font Sizes */
  --font-size-0: 10px;
  --font-size-1: 12px;
  --font-size-2: 14px;
  --font-size-3: 15px;
  --font-size-4: 16px;
  --font-size-5: 18px;
  --font-size-6: 24px;
  --font-size-7: 32px;

  /* Border Radius */
  --border-radius-0: 1px;
  --border-radius-1: 2px;
  --border-radius-2: 5px;
  --border-radius-3: 10px;
  --border-radius-4: 18px;
  --border-radius-5: 9999px;

  /* Border Size */
  --border-size-0: 0;
  --border-size-1: 1px;
  --border-size-2: 2px;
  --border-size-3: 5px;
  --border-size-4: 10px;

  /* Shadows */
  --shadow-primary:
    inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.02),
    0 0.9px 1.5px hsla(0, 0%, 0%, 0.045), 0 3.5px 6px hsla(0, 0%, 0%, 0.09);
  --shadow-textShadow: 2px 0 #ff00d6, 0 2px #ff00d6, 2px 0 #ff00d6, 0 -2px #ff00d6;

  /* Screen Sizes */
  --screen-sm: 480px;
  --screen-md: 768px;
  --screen-lg: 976px;
  --screen-xl: 1440px;
  --screen-xxl: 1640px;

  /* Fonts */
  --font-heading: Bungee-Regular, sans-serif;
  --font-body: system-ui, Segoe UI, Helvetica, sans-serif;

  /* Icon Sizes */
  --icon-size-sm: 14px;
  --icon-size-md: 20px;
  --icon-size-lg: 28px;
  --icon-size-xl: 36px;
  --icon-size-xxl: 48px;

  /* Shared Colors (same across all themes) */
  --color-success: #38a169;
  --color-error: #e53e3e;
  --color-warning: #dd6b20;
  --color-info: #3182ce;
  --color-male: #2766f6;
  --color-female: #f70776;
  --color-transgender: #5bcefa;
  --color-other: #4b713f;
  --color-online: #28cd41;
  --color-offline: #ff3b30;
  --color-audioWaveform-wave: #ffffff;
  --color-audioWaveform-progress: #ffa3e0;
  --color-audioWaveform-cursor: #dd5e98;
  --color-messageStatus-sent: #219653;
  --color-messageStatus-delivered: #5e606f;
  --color-messageStatus-seen: #219653;
  --color-messageStatus-error: #e53e3e;
}

/* Import theme-specific color variables */
.Button-module__button--63m1- {
  cursor: pointer;
  outline: none;
  border: none;
  font-family: var(--font-body);
}

/* Variant: Normal */
.Button-module__normal--wg2jc {
  background-color: var(--color-button);
  border-radius: var(--border-radius-1);
  color: var(--color-buttonText);
  padding: var(--space-4);
  transition: border 200ms ease-in-out;
}

.Button-module__normal--wg2jc:disabled {
  background-color: var(--color-borderStrokeDisabled);
  color: #b5b5b5;
  cursor: not-allowed;
}

/* Variant: Small */
.Button-module__small---1ejV {
  align-items: center;
  background-color: rgba(255, 0, 214, 0.3);
  border-radius: var(--border-radius-1);
  color: var(--color-buttonText);
  display: inline-flex;
  justify-content: center;
  padding: var(--space-1) var(--space-3);
  transition: border 200ms ease-in-out;
}

.Button-module__small---1ejV:disabled {
  background-color: var(--color-borderStrokeDisabled);
  color: #b5b5b5;
  cursor: not-allowed;
}

/* Variant: Cancel */
.Button-module__cancel--athzg {
  background-color: var(--color-buttonCancelBackground);
  border-radius: var(--border-radius-1);
  color: var(--color-buttonText);
  padding: var(--space-4);
}

/* Variant: Destructive */
.Button-module__destructive--qaB1R {
  background-color: var(--color-buttonCancelBackground);
  border: var(--border-size-1) solid var(--color-borderStroke);
  border-radius: var(--border-radius-1);
  color: var(--color-buttonText);
  padding: var(--space-4);
}

/* Variant: Text */
.Button-module__text--3JMiO {
  background-color: transparent;
  color: var(--color-buttonText);
  padding: 0;
}

/* Custom padding utility */
.Button-module__customPadding--3XZGJ {
  /* Applied via inline style when custom padding is needed */
}
.VoiceRecord-module__container--RmPrP {
  align-items: center;
  background-color: #ff00d6;
  border-radius: 40px;
  box-sizing: border-box;
  display: flex;
  height: 36px;
  overflow-y: hidden;
  position: relative;
  width: 250px;
}

.VoiceRecord-module__container--RmPrP svg {
  color: var(--color-text);
  cursor: pointer;
}

.VoiceRecord-module__timeCounter--HYqWW {
  align-items: center;
  background-color: white;
  border-radius: 40px;
  color: #ff00d6;
  font-size: 14px;
  font-weight: bold;
  margin-left: auto;
  margin-right: 8px;
  padding: 4px 8px;
  user-select: none;
  z-index: 1;
  display: flex;
}

.VoiceRecord-module__filling--A5jjD {
  background-color: #ff76e9;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.ChatForm-module__container---FJ-j {
  bottom: 0;
  display: flex;
  flex: 1;
  padding: 0;
  position: fixed;
  width: calc(100% - 700px);
}

@media (max-width: 768px) {
  .ChatForm-module__container---FJ-j {
    padding: 0;
    width: 100%;
  }
}

.ChatForm-module__form--qImtq {
  background-color: #992580;
  border-radius: var(--border-radius-4);
  color: var(--color-text);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto var(--space-3) var(--space-3);
  margin-bottom: var(--space-3);
  padding: 0 var(--space-3);
  width: 100%;
  z-index: 1;
}

.ChatForm-module__chatInput--k0pNC {
  background-color: transparent;
  border: none;
  color: var(--color-text);
  display: flex;
  flex: 1;
  font-size: var(--font-size-3);
  outline: none;
}

.ChatForm-module__chatInput--k0pNC::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.ChatForm-module__mediaContainer--UvWOR {
  border-bottom: 1px solid var(--color-selectedBackground);
  padding: var(--space-2) 0;
  width: 100%;
}

.ChatForm-module__previewContainer--9NUdC {
  margin-right: var(--space-5);
  position: relative;
}

.ChatForm-module__previewContainer--9NUdC img {
  border-radius: 10px;
  cursor: pointer;
  height: 80px;
  object-fit: cover;
  object-position: center;
  width: 80px;
}

.ChatForm-module__previewContainer--9NUdC img:hover {
  filter: brightness(70%);
}

.ChatForm-module__removeAttachmentButton--8sIXH {
  align-items: center;
  background-color: var(--color-iconsBackground);
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  height: 22px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -8px;
  width: 22px;
  z-index: 1;
}

.ChatForm-module__removeAttachmentButton--8sIXH svg {
  color: var(--color-text);
}

.ChatForm-module__actionButtonsContainer--FtXIo {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 2px;
  justify-content: center;
  min-height: 50px;
}

.ChatForm-module__iconLabel--zz-60 {
  align-items: center;
  display: flex;
}

.ChatForm-module__iconLabel--zz-60 svg {
  border-radius: 50%;
  color: var(--color-text);
  padding: 4px;
  transition: background-color 0.2s ease-in-out;
}

.ChatForm-module__iconLabel--zz-60 svg:hover {
  background-color: rgba(255, 0, 214, 0.3);
}

.ChatForm-module__iconLabelPointer--u8UOM {
  cursor: pointer;
}

.ChatForm-module__iconLabelAuto--ebEL5 {
  cursor: auto;
}

.ChatForm-module__iconLabelDisabled--tqSJF svg {
  color: rgba(255, 255, 255, 0.2);
}

.ChatForm-module__iconLabelDisabled--tqSJF svg:hover {
  background-color: transparent;
}

.ChatForm-module__iconLabelNotAllowed--LwgNG {
  cursor: not-allowed;
}
.DescriptionText-module__descriptionText--GO2pv {
  color: rgb(132, 141, 151);
  font-size: var(--font-size-2);
  overflow-wrap: break-word;
}
.Preference-module__preferenceRow--H3UI6 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.UserInfo-module__fieldset--gmA52 {
  flex-grow: 1;
  margin-bottom: var(--space-5);
}

.UserInfo-module__row--Rj7BG {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  align-items: center;
  gap: var(--space-3);
}

.UserInfo-module__row--Rj7BG:last-child {
  border-bottom: none;
}

.UserInfo-module__label--JF-yR {
  font-weight: normal;
  color: var(--color-text);
  font-size: var(--font-size-4);
  min-width: max-content;
}

.UserInfo-module__value--gT6gj {
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--font-size-4);
}
.EditProfileDialog-module__container--6ofbF {
  color: var(--color-text);
  flex-direction: column;
  width: 300px;
  display: flex;
}

.EditProfileDialog-module__fieldset--Qa-aZ {
  margin-bottom: var(--space-5);
  padding: 10px;
}

.EditProfileDialog-module__genderRow--P-wDM {
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
  display: flex;
}
.ConfirmDialog-module__container--ZijVy {
  color: var(--color-text);
  flex-direction: column;
  width: 350px;
  display: flex;
}

.ConfirmDialog-module__buttonsContainer--5-E-H {
  gap: 12px;
  justify-content: flex-end;
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  display: flex;
}
.WarningDialog-module__container--06fiL {
  flex-direction: column;
  max-width: 400px;
  display: flex;
}
.ChannelRow-module__row--e0EAV {
  align-items: center;
  border-bottom: 1px solid var(--color-borderStroke);
  border-top: 1px solid var(--color-borderStroke);
  cursor: auto;
  display: flex;
  flex-direction: row;
  height: 40px;
  padding-left: var(--space-3);
  position: relative;
  user-select: none;
}

.ChannelRow-module__row--e0EAV:nth-child(n + 2) {
  margin-bottom: -1px;
}

.ChannelRow-module__row--e0EAV:hover {
  background: var(--color-hoverBackground);
}

.ChannelRow-module__rowHighlighted--5LXY2 {
  background-color: var(--color-selectedBackground);
}

.ChannelRow-module__rowWithHover--t0XtO {
  cursor: pointer;
}

.ChannelRow-module__rowWithoutTopBorder--QlR4O {
  border-top: none;
}

.ChannelRow-module__iconWrapper--Rfy-5 {
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  margin-left: auto;
  margin-right: var(--space-3);
  padding: var(--space-2);
}

.ChannelRow-module__iconWrapper--Rfy-5:hover {
  background-color: var(--color-iconsBackground);
}

.ChannelRow-module__onlineStatus--NPq66 {
  border-radius: 50%;
  height: 10px;
  margin-right: var(--space-3);
  width: 10px;
}

.ChannelRow-module__onlineStatusOnline--TVt22 {
  background-color: var(--color-online);
}

.ChannelRow-module__onlineStatusOffline--lzfIb {
  background-color: var(--color-offline);
}

.ChannelRow-module__channelInfoWrapper--stQwI {
  align-items: center;
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: flex;
}

.ChannelRow-module__channel--Eiqgs {
  display: flex;
  color: var(--color-text);
}

.ChannelRow-module__channelMale--KKIN3 {
  color: var(--color-male);
}

.ChannelRow-module__channelFemale--xYOh1 {
  color: var(--color-female);
}

.ChannelRow-module__channelTransgender--4Ff6e {
  color: var(--color-transgender);
}

.ChannelRow-module__channelOther--ypAnS {
  color: var(--color-other);
}

.ChannelRow-module__actionsWrapper--iz4LP {
  align-items: center;
  color: var(--color-text);
  display: flex;
  flex-shrink: 0;
  margin-left: auto;
  min-width: 0;
}

.ChannelRow-module__messageCounter--WCRce {
  align-items: center;
  background-color: var(--color-borderStroke);
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  font-size: var(--font-size-2);
  font-weight: 700;
  height: 24px;
  justify-content: center;
  margin-left: auto;
  margin-right: var(--space-3);
  width: 24px;
}
.UserProfileDialog-module__container--6Yj7m {
  flex-direction: column;
  width: 300px;
  display: flex;
}
.RoomDialog-module__container--eixwB {
  flex-direction: column;
  overflow-y: auto;
  width: 400px;
  display: flex;
}

.RoomDialog-module__row--imCBd {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.RoomDialog-module__fieldLabel--KrtqB {
  line-height: 1;
}

.RoomDialog-module__fieldLabelRow--ag74O {
  flex: 1;
  justify-content: space-between;
  margin-bottom: var(--space-2);
  display: flex;
}
.ViewAllRoomsDialog-module__container--GUPjt {
  flex-direction: column;
  max-height: 400px;
  overflow: auto;
  width: 400px;
  display: flex;
}

.ViewAllRoomsDialog-module__row--0JuAs {
  border-bottom: 1px solid var(--color-hoverBackground);
  flex-wrap: wrap;
  margin-bottom: 4px;
  padding: 8px 0;
  width: 100%;
  display: flex;
}

.ViewAllRoomsDialog-module__row--0JuAs:first-of-type {
  padding-top: 0;
}

.ViewAllRoomsDialog-module__row--0JuAs:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ViewAllRoomsDialog-module__description--UfUfI {
  width: 100%;
  display: flex;
}

.ViewAllRoomsDialog-module__roomStatus--FiEf7 {
  margin-left: auto;
  display: flex;
}

.ViewAllRoomsDialog-module__roomStatus--FiEf7 button {
  height: 28px;
  width: 105px;
}

.ViewAllRoomsDialog-module__roomName--eH6IS {
  flex-wrap: wrap;
  display: flex;
}

.ViewAllRoomsDialog-module__titleRow--hN4QS {
  align-items: center;
  width: 100%;
  display: flex;
}
.ChatRowContent-module__imageContainer--wPKST {
  flex-direction: row;
}

.ChatRowContent-module__voiceContainer--0gIzg {
  overflow-x: auto;
  padding: var(--space-3) 0;
  width: 100%;
}

.ChatRowContent-module__container--g2Arw {
  flex: 1;
  flex-direction: column;
}

.ChatRowContent-module__image--wNkt6 {
  cursor: pointer;
  margin-right: var(--space-5);
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
}

.ChatRowContent-module__uploadingAttachmentContainer--gwIqm {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-right: var(--space-5);
  max-height: 200px;
  max-width: 200px;
}

@keyframes ChatRowContent-module__spin--haT8E {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}

.ChatRowContent-module__uploadingAttachmentContainer--gwIqm svg {
  animation: ChatRowContent-module__spin--haT8E 3s infinite linear;
}
.ChatRow-module__container--uUqhs {
  display: grid;
  flex-direction: column;
  grid-template-columns: 36px 1fr;
  position: relative;
  align-items: start;
}

.ChatRow-module__containerWithMargin--Oa9-Q {
  margin-bottom: var(--space-4, 16px);
  padding-bottom: var(--space-3, 12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ChatRow-module__container--uUqhs:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ChatRow-module__container--uUqhs {
    grid-template-columns: 36px calc(100% - 70px);
  }
}

.ChatRow-module__genderIconContainer--xu71s {
  align-items: center;
  background-color: hsl(233, 8%, 19%);
  border-radius: 50%;
  height: 28px;
  justify-content: center;
  margin-right: 8px;
  width: 28px;
  display: flex;
}

.ChatRow-module__message--W5mqL {
  background-color: hsl(233, 8%, 19%);
  border-radius: 8px;
  color: var(--color-messageText, #e4e6eb);
  direction: ltr;
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  position: relative;
  padding: var(--space-4, 16px) 120px var(--space-4, 16px) 10px;
}

.ChatRow-module__messageWithReactions--2cfMu {
  padding: var(--space-4, 16px) 120px 42px 10px;
}

.ChatRow-module__nickname--l-V70 {
  font-size: 14px;
  font-weight: bold;
}

.ChatRow-module__nicknameClickable--mFNrm {
  cursor: pointer;
}

.ChatRow-module__nicknameNonClickable--e4T7x {
  cursor: default;
}

.ChatRow-module__nicknameMale--wWUbV {
  color: var(--color-male, #5865f2);
}

.ChatRow-module__nicknameFemale--T5sqc {
  color: var(--color-female, #eb459e);
}

.ChatRow-module__nicknameTransgender--UB8dK {
  color: var(--color-transgender, #ff9800);
}

.ChatRow-module__nicknameOther--vLDtA {
  color: var(--color-other, #9c27b0);
}

.ChatRow-module__timestamp--pJ3n8 {
  color: var(--color-text, #dbdee1);
  font-size: 12px;
  font-weight: 400;
  margin-left: auto;
  opacity: 0.6;
}

.ChatRow-module__shortDescription--aR6o0 {
  align-items: center;
  color: var(--color-text, #dbdee1);
  display: flex;
  flex-direction: row;
  font-size: 10px;
  margin-left: 16px;
  opacity: 0.6;
}

.ChatRow-module__shortDescription--aR6o0 span {
  margin-left: 4px;
  text-transform: lowercase;
}

.ChatRow-module__infoContainer--MFX7Z {
  align-items: center;
  flex-direction: row;
  justify-content: center;
  margin-bottom: var(--space-4, 16px);
  display: flex;
}

.ChatRow-module__headerContainer--SJObL {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 8px;
}

.ChatRow-module__headerContainerWithInfo--QQslB {
  margin-top: 44px;
}

.ChatRow-module__messageContainer--7T1wh {
  overflow: visible;
  position: relative;
}

.ChatRow-module__hoverActions--43HQZ {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: 6px;
  transition: opacity 0.1s ease-in-out;
}

.ChatRow-module__messageWrapper--BBDPj {
  display: flex;
  overflow: visible;
  position: relative;
  width: 100%;
}

.ChatRow-module__messageWrapper--BBDPj:hover .ChatRow-module__hoverActions--43HQZ {
  opacity: 1;
  pointer-events: auto;
}

.ChatRow-module__actionButton--81qrM {
  align-items: center;
  background: none;
  border: none;
  border-radius: 4px;
  color: var(--color-text, #dbdee1);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  justify-content: center;
  padding: 6px 8px;
  position: relative;
  transition: all 0.1s ease-in-out;
}

.ChatRow-module__actionButton--81qrM:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ChatRow-module__moreMenu--jVBih {
  background-color: hsl(233, 8%, 12%);
  border: 1px solid hsl(233, 8%, 25%);
  border-radius: 6px;
  bottom: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 8px;
  min-width: 150px;
  position: absolute;
  right: 0;
  z-index: 1000;
}

.ChatRow-module__menuItem--lLghe {
  align-items: center;
  background: none;
  border: none;
  color: var(--color-text, #dbdee1);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  gap: 8px;
  padding: 10px 16px;
  text-align: left;
  transition: background-color 0.1s ease-in-out;
  width: 100%;
}

.ChatRow-module__menuItem--lLghe:hover {
  background-color: hsl(233, 8%, 20%);
}

.ChatRow-module__menuItem--lLghe:first-child {
  border-radius: 5px 5px 0 0;
}

.ChatRow-module__menuItem--lLghe:last-child {
  border-radius: 0 0 5px 5px;
}

.ChatRow-module__reactionPicker--CWZIx {
  background-color: hsl(233, 8%, 12%);
  border: 1px solid hsl(233, 8%, 25%);
  border-radius: 8px;
  bottom: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  padding: 12px;
  position: absolute;
  right: 0;
  z-index: 1001;
}

.ChatRow-module__reactionButton--l9fhB {
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 8px;
  transition: all 0.1s ease-in-out;
}

.ChatRow-module__reactionButton--l9fhB:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.2);
}

.ChatRow-module__reactionsContainer--FVhE8 {
  bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  left: 10px;
  position: absolute;
  z-index: 10;
}

.ChatRow-module__reactionItem--r10N4 {
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  gap: 4px;
  padding: 4px 6px;
  transition: all 0.1s ease-in-out;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ChatRow-module__reactionItemOwn--BMQGO {
  background-color: rgba(88, 101, 242, 0.3);
  border-color: rgba(88, 101, 242, 0.6);
}

.ChatRow-module__reactionItem--r10N4:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.ChatRow-module__reactionItemOwn--BMQGO:hover {
  background-color: rgba(88, 101, 242, 0.4);
}

.ChatRow-module__reactionItem--r10N4 .ChatRow-module__emoji---4HZa {
  font-size: 14px;
}

.ChatRow-module__reactionItem--r10N4 .ChatRow-module__count--EMDg9 {
  color: var(--color-text, #dbdee1);
  font-size: 12px;
  font-weight: 500;
}
.ChatMessages-module__container--gzFIe {
  flex-direction: column;
  margin-top: auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 var(--space-4);
  position: relative;
}

.ChatMessages-module__imagePreview--sZCjN {
  margin-bottom: 20px;
  max-height: 400px;
  max-width: 100%;
}

.ChatMessages-module__timestampDivider--W2wQS {
  align-items: center;
  display: flex;
  margin: 16px 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.ChatMessages-module__timestampDivider--W2wQS::before,
.ChatMessages-module__timestampDivider--W2wQS::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  content: "";
  flex: 1;
  height: 1px;
}

.ChatMessages-module__timestampText--Z4tAD {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: var(--color-text);
  font-size: 11px;
  font-weight: 500;
  opacity: 0.6;
  padding: 4px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.Sidebar-module__container--ly8j6 {
  background-color: var(--color-sidebar);
  box-sizing: border-box;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  width: 350px;
}

@media (max-width: 768px) {
  .Sidebar-module__container--ly8j6 {
    padding: 8px 0;
    width: 80vw;
  }
}

.Sidebar-module__containerLeft--FmMuW {
  border-right: 1px solid var(--color-borderStroke);
}

.Sidebar-module__containerRight--N--6q {
  border-left: 1px solid var(--color-borderStroke);
}

.Sidebar-module__containerLeftOpen--ouiBk {
  left: 0;
}

.Sidebar-module__containerLeftClosed--3kNLL {
  left: -350px;
}

.Sidebar-module__containerRightOpen--aTkZP {
  right: 0;
}

.Sidebar-module__containerRightClosed--DPTvH {
  right: -350px;
}

.Sidebar-module__headerContainer--Tkigz {
  align-items: center;
  border-bottom: 1px solid var(--color-borderStroke);
  height: 55px;
  justify-content: center;
  width: 100%;
  display: flex;
}

.Sidebar-module__closeButtonContainer--DiEdO {
  align-items: center;
  background-color: rgba(255, 0, 214, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  position: absolute;
  top: 10px;
  width: 32px;
  z-index: 1;
}

.Sidebar-module__closeButtonContainer--DiEdO:hover {
  background-color: rgba(255, 0, 214, 0.8);
}

.Sidebar-module__closeButtonContainer--DiEdO svg {
  color: var(--color-text);
}

.Sidebar-module__closeButtonLeft--cBavQ {
  right: 4px;
}

.Sidebar-module__closeButtonRight--cmqEd {
  left: 4px;
}
.OfflinePage-module__container--yN1D6 {
  align-items: center;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  width: 900px;
}

@media (max-width: 768px) {
  .OfflinePage-module__container--yN1D6 {
    width: auto;
  }
}

.OfflinePage-module__contentBox--dscJX {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: var(--color-baseBackdropColor);
  border-radius: var(--border-radius-4);
  box-shadow: var(--shadow-primary);
  display: flex;
  flex-direction: column;
  height: 400px;
  justify-content: center;
  max-width: 50%;
}

@media (max-width: 768px) {
  .OfflinePage-module__contentBox--dscJX {
    aspect-ratio: 3/4;
    max-width: fit-content;
  }
}

.OfflinePage-module__alertContainer--eqnDh {
  margin: var(--space-6) 0;
  width: 80%;
}

.OfflinePage-module__actionButtonsContainer--kNqK- {
  justify-content: space-between;
  margin-top: var(--space-6);
  width: 80%;
}

.OfflinePage-module__actionButtonsContainer--kNqK- button {
  flex: 1;
}
.ChatOverviewPage-module__chatMessagesContainer--xzIlJ {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 56px auto 70px;
  max-width: calc(100% - 700px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  .ChatOverviewPage-module__chatMessagesContainer--xzIlJ {
    margin-bottom: 70px;
    margin-top: 46px;
    max-width: 100%;
    width: 100%;
  }
}

.ChatOverviewPage-module__header--227oU {
  align-items: center;
  background-color: var(--color-primary);
  border-bottom: 1px solid var(--color-borderStroke);
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  display: flex;
}

.ChatOverviewPage-module__actionIcon--QJ4LA svg {
  color: white;
  cursor: pointer;
  margin: 0 8px;
}

.ChatOverviewPage-module__innerHeader--ogWqO {
  align-items: center;
  border-left: 1px solid var(--color-borderStroke);
  border-right: 1px solid var(--color-borderStroke);
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  width: calc(100% - 700px);
  display: flex;
}

@media (max-width: 768px) {
  .ChatOverviewPage-module__innerHeader--ogWqO {
    border: none;
    width: 100%;
  }
}

.ChatOverviewPage-module__innerHeaderCentered--2Tk8t {
  align-items: center;
  height: 55px;
  justify-content: center;
  width: 100%;
  display: flex;
}

.ChatOverviewPage-module__leaveButtonContainer--yAwkT {
  height: 100%;
  position: absolute;
  right: 12px;
  top: 12px;
}

@media (max-width: 768px) {
  .ChatOverviewPage-module__leaveButtonContainer--yAwkT {
    display: none;
  }
}

.ChatOverviewPage-module__profileContainer--WPJAc {
  align-items: center;
  flex-direction: row;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
  display: flex;
}

.ChatOverviewPage-module__profileButtonContainer--n3Qb8 {
  position: absolute;
  right: 4px;
  top: 12px;
}

.ChatOverviewPage-module__profileButtonContainer--n3Qb8 svg {
  cursor: pointer;
}
.Footer-module__footer--A76NF {
  margin-top: auto;
  padding: 32px 0 24px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.Footer-module__footerLinks--ciyvi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.Footer-module__footerLink--ptmRq {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  transition: text-decoration 0.2s ease;
  opacity: 0.65;
}

.Footer-module__footerLink--ptmRq:hover {
  text-decoration: underline;
}

.Footer-module__footerContent--xLy7a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-text);
  opacity: 0.65;
}

@media (max-width: 768px) {
  .Footer-module__footer--A76NF {
    padding: 24px 0 16px;
  }

  .Footer-module__footerLinks--ciyvi {
    gap: 16px;
    font-size: 13px;
  }
}
.PageLayout-module__pageWrapper--RIS1E {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-background);
}

.PageLayout-module__container--2S8ZU {
  flex: 1;
  max-width: 700px;
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
}

@media (min-width: var(--screen-md)) {
  .PageLayout-module__container--2S8ZU {
    padding: var(--space-7) var(--space-6);
  }
}
.ChatErrorMessages-module__container--8zoRv {
  background-color: var(--color-error);
  box-shadow:
    inset 0 0 1px 1px hsla(0, 0%, 100%, 0.075),
    0 0 0 1px hsla(0, 0%, 0%, 0.05),
    0 0 0 hsla(0, 0%, 0%, 0.02),
    0 1px 2px hsla(0, 0%, 0%, 0.045),
    0 4px 6px hsla(0, 0%, 0%, 0.09);
  color: var(--color-text);
  height: 54px;
  position: absolute;
  top: 55px;
  width: 100%;
  z-index: 1;
  display: flex;
}

.ChatErrorMessages-module__wrapper--WKbGK {
  align-items: center;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
  display: flex;
}

.ChatErrorMessages-module__closeButton--hdCmR {
  align-items: center;
  background-color: hsl(233, 8%, 19%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 30px;
  justify-content: center;
  position: absolute;
  right: 4px;
  transform: translateX(-50%);
  width: 30px;
}

.ChatErrorMessages-module__closeButton--hdCmR svg {
  color: var(--color-text);
}
.UserChannels-module__container--fR51P {
  display: flex;
  flex-direction: column;
}
.ProfilePopoverRow-module__row--iMHzS {
  align-items: center;
  color: var(--color-text);
  cursor: pointer;
  font-size: var(--font-size-3);
  padding: 12px 16px;
  display: flex;
}

.ProfilePopoverRow-module__row--iMHzS:hover {
  background: var(--color-hoverBackground);
}
.LoginForm-module__container--2-aDn {
  align-items: center;
  background-color: var(--color-baseBackdropColor);
  border-radius: var(--border-radius-4);
  box-shadow: var(--shadow-primary);
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 400px;
  padding: var(--space-5);
}
.LoginPage-module__container--Eitae {
  flex-direction: column;
  width: 900px;
}

@media (max-width: 768px) {
  .LoginPage-module__container--Eitae {
    align-items: center;
    width: auto;
  }
}
.GenderBox-module__container--4Tbst {
  align-items: center;
  background-color: var(--color-text);
  border: 3px solid var(--color-borderStroke);
  border-radius: var(--border-radius-2);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  font-family: var(--font-heading);
  height: 200px;
  justify-content: center;
  width: 200px;
}

@media (max-width: 768px) {
  .GenderBox-module__container--4Tbst {
    box-sizing: border-box;
    flex-direction: column;
    height: 175px;
    justify-content: center;
    margin: 4px;
    width: calc(50% - 12px);
  }
}

.GenderBox-module__containerMale--b2DhY {
  background-color: var(--color-male);
  color: var(--color-text);
}

.GenderBox-module__containerFemale--Susud {
  background-color: var(--color-female);
  color: var(--color-text);
}

.GenderBox-module__containerTransgender--vcrbw {
  background-color: var(--color-transgender);
  color: var(--color-text);
}

.GenderBox-module__containerOther--hiRzN {
  background-color: var(--color-other);
  color: var(--color-text);
}

.GenderBox-module__container--4Tbst:hover {
  color: var(--color-text);
}

.GenderBox-module__containerHoverMale--7oVvA:hover {
  background-color: var(--color-male);
}

.GenderBox-module__containerHoverFemale--AoZgL:hover {
  background-color: var(--color-female);
}

.GenderBox-module__containerHoverTransgender--hBugc:hover {
  background-color: var(--color-transgender);
}

.GenderBox-module__containerHoverOther---P6vw:hover {
  background-color: var(--color-other);
}
.GenderSelector-module__container--IwTxY {
  display: flex;
  flex-direction: row;
  gap: 4px;
  justify-content: space-between;
  margin-top: var(--space-5);
}

@media (max-width: 768px) {
  .GenderSelector-module__container--IwTxY {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.GenderSelectorPage-module__container--fLclV {
  display: flex;
  flex-direction: column;
  width: 900px;
  min-height: 100vh;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .GenderSelectorPage-module__container--fLclV {
    align-items: center;
    width: auto;
  }
}

.GenderSelectorPage-module__stepContainer--uMg9R {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

.GenderSelectorPage-module__descriptionText--bX6no {
  color: var(--color-text, #000);
  text-align: left;
  max-width: 600px;
  line-height: 1.6;
  font-size: 18px;
}

@media (max-width: 768px) {
  .GenderSelectorPage-module__descriptionText--bX6no {
    text-align: center;
  }
}

.GenderSelectorPage-module__buttonContainer--wluQc {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .GenderSelectorPage-module__buttonContainer--wluQc {
    flex-direction: column;
    width: 100%;
  }
}

.GenderSelectorPage-module__styledButton--DEOw3 {
  font-size: 16px;
  font-weight: 600;
  min-width: 140px;
}

@media (max-width: 768px) {
  .GenderSelectorPage-module__styledButton--DEOw3 {
    min-width: auto;
    width: 100%;
  }
}
.AboutPage-module__pageTitle--LBT0p {
  font-size: var(--font-size-7);
  margin-bottom: var(--space-6);
  text-align: center;
}

.AboutPage-module__section--T2fR1 {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
}

.AboutPage-module__sectionTitle--3s6Jn {
  font-size: var(--font-size-5);
  font-weight: 600;
  margin-bottom: var(--space-4);
  display: block;
  width: 100%;
}

.AboutPage-module__paragraph--p4pmX {
  font-size: var(--font-size-4);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.AboutPage-module__valuesList--YqUi6 {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.AboutPage-module__valueItem--QwBwR {
  font-size: var(--font-size-4);
  color: var(--color-text);
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-hoverBackground);
  border-radius: var(--border-radius-2);
  border-left: var(--border-size-3) solid var(--color-primary);
}

@media (min-width: var(--screen-md)) {
  .AboutPage-module__sectionTitle--3s6Jn {
    font-size: var(--font-size-6);
  }
}
.ContactPage-module__pageTitle--or9lB {
  font-size: var(--font-size-7);
  margin-bottom: var(--space-5);
  text-align: center;
}

.ContactPage-module__introSection--5cxE8 {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
}

.ContactPage-module__introText--Npjdz {
  font-size: var(--font-size-4);
  color: var(--color-text);
  text-align: center;
  line-height: 1.6;
}

.ContactPage-module__contactInfo--weh4a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.ContactPage-module__infoItem--73r4e {
  padding: var(--space-4);
  background-color: var(--color-hoverBackground);
  border-radius: var(--border-radius-2);
  text-align: center;
}

.ContactPage-module__infoLabel--N3-jw {
  font-size: var(--font-size-3);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  display: block;
}

.ContactPage-module__infoValue--ykEUp {
  font-size: var(--font-size-3);
  color: var(--color-text);
  opacity: 0.8;
}

.ContactPage-module__contactForm--yCzOn {
  background-color: var(--color-sidebar);
  padding: var(--space-6);
  border-radius: var(--border-radius-3);
  border: var(--border-size-1) solid var(--color-borderStroke);
}

.ContactPage-module__formGroup--raj3R {
  margin-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
}

.ContactPage-module__label--6KUyK {
  display: block;
  width: 100%;
  font-size: var(--font-size-3);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  white-space: nowrap;
}

.ContactPage-module__input--yNpwL {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-4);
  border: var(--border-size-1) solid var(--color-borderStroke);
  border-radius: var(--border-radius-2);
  background-color: var(--color-background);
  color: var(--color-text);
}

.ContactPage-module__textarea--4Dj5H {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-4);
  border: var(--border-size-1) solid var(--color-borderStroke);
  border-radius: var(--border-radius-2);
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: inherit;
  resize: vertical;
}

.ContactPage-module__textarea--4Dj5H:focus {
  outline: none;
}

.ContactPage-module__submitButton--XYDgm {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  font-size: var(--font-size-4);
  font-weight: 600;
}

@media (min-width: var(--screen-md)) {
  .ContactPage-module__contactForm--yCzOn {
    padding: var(--space-7);
  }
}
.TermsPage-module__pageWrapper--CQHCv {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-background);
}

.TermsPage-module__container--cOqfO {
  flex: 1;
  max-width: 900px;
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
}

.TermsPage-module__pageTitle--3FhNp {
  font-size: var(--font-size-7);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  text-align: center;
}

.TermsPage-module__lastUpdated--yqowm {
  font-size: var(--font-size-2);
  color: var(--color-text);
  opacity: 0.7;
  text-align: center;
  margin-bottom: var(--space-6);
}

.TermsPage-module__section--LaIcT {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
}

.TermsPage-module__sectionTitle--7jq7h {
  font-size: var(--font-size-5);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  display: block;
  width: 100%;
}

.TermsPage-module__paragraph--aIkXV {
  font-size: var(--font-size-4);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.TermsPage-module__list--NHUe2 {
  margin-top: var(--space-3);
  padding-left: var(--space-4);
}

.TermsPage-module__listItem--Dt9Ob {
  font-size: var(--font-size-4);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.TermsPage-module__footer---poC1 {
  margin-top: var(--space-7);
  padding: var(--space-5);
  background-color: var(--color-hoverBackground);
  border-radius: var(--border-radius-2);
  border-left: var(--border-size-3) solid var(--color-primary);
}

.TermsPage-module__footerText--7VrUp {
  font-size: var(--font-size-4);
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: var(--screen-md)) {
  .TermsPage-module__container--cOqfO {
    padding: var(--space-7) var(--space-6);
  }

  .TermsPage-module__sectionTitle--7jq7h {
    font-size: var(--font-size-6);
  }
}
