/* [project]/modules/comment/components/CommentCard.module.css [app-client] (css) */
.CommentCard-module__6TlA3G__commentCard {
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
  padding: 4px 8px;
  transition: background-color .2s;
  display: flex;
}

.CommentCard-module__6TlA3G__commentCard:hover {
  background-color: #ffffff1a;
}

.CommentCard-module__6TlA3G__commentCard.CommentCard-module__6TlA3G__pressing {
  background-color: #fff3;
}

.CommentCard-module__6TlA3G__avatarContainer {
  flex-shrink: 0;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  margin-top: 4px;
}

.CommentCard-module__6TlA3G__bubbleContainer {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.CommentCard-module__6TlA3G__messageBubble {
  background: #fff;
  border-radius: 12px;
  max-width: 80%;
  padding: 8px 12px;
  position: relative;
  box-shadow: 0 1px 2px #0000001a;
}

.CommentCard-module__6TlA3G__bubbleHeader {
  margin-bottom: 4px;
}

.CommentCard-module__6TlA3G__userName {
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.CommentCard-module__6TlA3G__bubbleContent {
  margin-bottom: 4px;
}

.CommentCard-module__6TlA3G__text {
  color: #374151;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 15px;
  line-height: 1.5;
}

.CommentCard-module__6TlA3G__link {
  color: #3b82f6;
  word-break: break-all;
  text-decoration: none;
}

.CommentCard-module__6TlA3G__link:hover {
  text-decoration: underline;
}

.CommentCard-module__6TlA3G__statusMessage {
  color: #9ca3af;
  font-size: 14px;
  font-style: italic;
}

.CommentCard-module__6TlA3G__quote {
  background: #f3f4f6;
  border-left: 3px solid #3b82f6;
  border-radius: 4px;
  margin: 8px 0;
  padding: 8px;
}

.CommentCard-module__6TlA3G__quoteAuthor {
  color: #3b82f6;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
}

.CommentCard-module__6TlA3G__quoteText {
  color: #6b7280;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.CommentCard-module__6TlA3G__bubbleFooter {
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  display: flex;
}

.CommentCard-module__6TlA3G__timestamp {
  color: #9ca3af;
  font-size: 11px;
  line-height: 1;
}

.CommentCard-module__6TlA3G__replyButton {
  color: #3b82f6;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.CommentCard-module__6TlA3G__replyButton:hover {
  color: #2563eb;
  text-decoration: underline;
}

.CommentCard-module__6TlA3G__attachments {
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  display: flex;
}

.CommentCard-module__6TlA3G__attachment {
  cursor: pointer;
  border-radius: 8px;
  transition: opacity .2s;
  overflow: hidden;
}

.CommentCard-module__6TlA3G__attachment:hover {
  opacity: .9;
}

.CommentCard-module__6TlA3G__attachmentImage {
  cursor: pointer;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 300px;
  display: block;
}

.CommentCard-module__6TlA3G__videoThumbnail {
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  max-height: 300px;
  position: relative;
  overflow: hidden;
}

.CommentCard-module__6TlA3G__videoThumbnail .CommentCard-module__6TlA3G__attachmentImage {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 300px;
}

.CommentCard-module__6TlA3G__playIcon {
  color: #fff;
  z-index: 1;
  pointer-events: none;
  background: #000000b3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 18px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.CommentCard-module__6TlA3G__attachmentFile {
  color: #374151;
  cursor: pointer;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
}

.CommentCard-module__6TlA3G__attachmentLocation {
  cursor: pointer;
  background: #f3f4f6;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  display: flex;
}

.CommentCard-module__6TlA3G__locationIcon {
  flex-shrink: 0;
  font-size: 24px;
}

.CommentCard-module__6TlA3G__locationInfo {
  flex: 1;
  min-width: 0;
}

.CommentCard-module__6TlA3G__locationName {
  color: #111827;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
}

.CommentCard-module__6TlA3G__locationAddress {
  color: #6b7280;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  overflow: hidden;
}

.CommentCard-module__6TlA3G__reactions {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  display: flex;
}

.CommentCard-module__6TlA3G__reactionBadge {
  cursor: pointer;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  font-size: 14px;
  transition: all .2s;
  display: flex;
}

.CommentCard-module__6TlA3G__reactionBadge:hover {
  background: #e5e7eb;
  transform: scale(1.05);
}

.CommentCard-module__6TlA3G__reactionBadge.CommentCard-module__6TlA3G__userReacted {
  background: #dbeafe;
  border-color: #3b82f6;
}

.CommentCard-module__6TlA3G__emoji {
  font-size: 16px;
  line-height: 1;
}

.CommentCard-module__6TlA3G__count {
  color: #374151;
  font-weight: 500;
}

/* [project]/modules/comment/components/CommentsList.module.css [app-client] (css) */
.CommentsList-module__RofocW__commentsList {
  -webkit-overflow-scrolling: touch;
  background: #b8e0f5;
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 8px;
  overflow: hidden auto;
}

.CommentsList-module__RofocW__loadingState, .CommentsList-module__RofocW__emptyState, .CommentsList-module__RofocW__errorState {
  text-align: center;
  color: #6b7280;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 24px;
  display: flex;
}

.CommentsList-module__RofocW__errorState {
  color: #ef4444;
}

.CommentsList-module__RofocW__retryButton {
  color: #fff;
  cursor: pointer;
  background: #667eea;
  border: none;
  border-radius: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  font-weight: 500;
}

.CommentsList-module__RofocW__retryButton:hover {
  opacity: .9;
}

.CommentsList-module__RofocW__skeleton {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%) 0 0 / 200% 100%;
  border-radius: 8px;
  height: 120px;
  margin-bottom: 16px;
  animation: 1.5s infinite CommentsList-module__RofocW__loading;
}

@keyframes CommentsList-module__RofocW__loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.CommentsList-module__RofocW__loadingMore {
  justify-content: center;
  padding: 16px;
  display: flex;
}

.CommentsList-module__RofocW__spinner {
  border: 3px solid #f3f4f6;
  border-top-color: #667eea;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: .6s linear infinite CommentsList-module__RofocW__spin;
}

@keyframes CommentsList-module__RofocW__spin {
  to {
    transform: rotate(360deg);
  }
}

/* [project]/modules/comment/components/EmojiPicker.module.css [app-client] (css) */
.EmojiPicker-module__mIWqSW__overlay {
  z-index: 1000;
  background: none;
  position: fixed;
  inset: 0;
}

.EmojiPicker-module__mIWqSW__emojiPicker {
  z-index: 1001;
  background: #fff;
  border-radius: 16px;
  flex-direction: column;
  width: 280px;
  height: 280px;
  animation: .2s ease-out EmojiPicker-module__mIWqSW__fadeInScale;
  display: flex;
  position: fixed;
  overflow: hidden;
  box-shadow: 0 8px 32px #0003;
}

@keyframes EmojiPicker-module__mIWqSW__fadeInScale {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.EmojiPicker-module__mIWqSW__emojiPickerContent {
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 12px;
  display: flex;
  overflow: hidden;
}

@media (max-width: 768px) {
  .EmojiPicker-module__mIWqSW__emojiPickerContent {
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    min-height: 0;
    padding: 16px;
  }
}

.EmojiPicker-module__mIWqSW__emojiGrid {
  box-sizing: border-box;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  display: grid;
}

.EmojiPicker-module__mIWqSW__emojiItem {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 24px;
  transition: background-color .15s;
  display: flex;
}

.EmojiPicker-module__mIWqSW__emojiItem:hover {
  background: #f3f4f6;
}

.EmojiPicker-module__mIWqSW__emojiItem:active {
  background: #e5e7eb;
  transform: scale(.95);
}

@media (max-width: 768px) {
  .EmojiPicker-module__mIWqSW__emojiPicker {
    width: 280px;
    height: 280px;
  }

  .EmojiPicker-module__mIWqSW__emojiPickerContent {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 16px;
  }

  .EmojiPicker-module__mIWqSW__emojiGrid {
    box-sizing: border-box;
    grid-template-columns: repeat(6, 1fr);
    place-content: start;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    height: fit-content;
    min-height: 0;
    max-height: 100%;
    margin: 0;
    padding: 0;
  }

  .EmojiPicker-module__mIWqSW__emojiItem {
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin: 0;
    font-size: 20px;
    display: flex;
  }
}

/* [project]/modules/comment/components/AttachmentPicker.module.css [app-client] (css) */
.AttachmentPicker-module__Mus58G__overlay {
  z-index: 1000;
  background: none;
  position: fixed;
  inset: 0;
}

.AttachmentPicker-module__Mus58G__floatingMenu {
  z-index: 1001;
  pointer-events: none;
  flex-direction: column;
  width: auto;
  animation: .2s ease-out AttachmentPicker-module__Mus58G__fadeInScale;
  display: flex;
  position: fixed;
}

@keyframes AttachmentPicker-module__Mus58G__fadeInScale {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.AttachmentPicker-module__Mus58G__actionsBlock {
  pointer-events: auto;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  width: auto;
  min-width: 200px;
  max-width: 240px;
  padding: 2px;
  box-shadow: 0 4px 20px #00000026;
}

.AttachmentPicker-module__Mus58G__actions {
  flex-direction: column;
  padding: 2px 0;
  display: flex;
}

.AttachmentPicker-module__Mus58G__actionButton {
  text-align: left;
  color: #111827;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  margin: 1px 0;
  padding: 8px 12px;
  font-size: 14px;
  transition: background-color .2s;
  display: flex;
}

.AttachmentPicker-module__Mus58G__actionIcon {
  color: #111827;
  stroke: currentColor;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.AttachmentPicker-module__Mus58G__actionButton:hover:not(:disabled) {
  background: #f3f4f6;
}

.AttachmentPicker-module__Mus58G__actionButton:active:not(:disabled) {
  background: #e5e7eb;
}

.AttachmentPicker-module__Mus58G__actionButton:disabled {
  opacity: .5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .AttachmentPicker-module__Mus58G__actionsBlock {
    border-radius: 14px;
  }

  .AttachmentPicker-module__Mus58G__actionButton {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* [project]/modules/comment/components/AttachmentPreview.module.css [app-client] (css) */
.AttachmentPreview-module__XyR5Ma__attachmentPreview {
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-bottom: 8px;
  margin-left: 44px;
  padding: 0;
  display: flex;
}

.AttachmentPreview-module__XyR5Ma__previewItem {
  flex-shrink: 0;
  position: relative;
}

.AttachmentPreview-module__XyR5Ma__squarePreview {
  background: #f3f4f6;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.AttachmentPreview-module__XyR5Ma__previewImage {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.AttachmentPreview-module__XyR5Ma__iconContainer {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.AttachmentPreview-module__XyR5Ma__icon {
  color: #6b7280;
}

.AttachmentPreview-module__XyR5Ma__playIcon {
  color: #fff;
  z-index: 1;
  pointer-events: none;
  background: #0009;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 10px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.AttachmentPreview-module__XyR5Ma__removeButton {
  color: #fff;
  cursor: pointer;
  z-index: 10;
  background: #6b7280e6;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 4px;
  right: 4px;
  box-shadow: 0 1px 3px #0003;
}

.AttachmentPreview-module__XyR5Ma__removeButton:hover {
  background: #4b5563e6;
  transform: scale(1.1);
}

.AttachmentPreview-module__XyR5Ma__removeButton:active {
  transform: scale(.95);
}

/* [project]/modules/comment/components/CommentInput.module.css [app-client] (css) */
.CommentInput-module__lS6XBG__commentInput {
  box-sizing: border-box;
  background: #b8e0f5;
  width: 100%;
  padding: 0 16px 8px;
}

.CommentInput-module__lS6XBG__replyTo {
  color: #374151;
  background: #ffffffe6;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  padding: 6px 12px;
  font-size: 13px;
  display: flex;
}

.CommentInput-module__lS6XBG__replyToText {
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  overflow: hidden;
}

.CommentInput-module__lS6XBG__cancelReply {
  color: #6b7280;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  display: flex;
}

.CommentInput-module__lS6XBG__cancelReply:hover {
  color: #374151;
  background: #e5e7eb;
}

.CommentInput-module__lS6XBG__inputContainer {
  background: #fff;
  border-radius: 24px;
  flex-direction: column;
  width: 100%;
  padding: 8px 12px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.CommentInput-module__lS6XBG__clipboardHint {
  color: #6b7280;
  text-align: center;
  background: #f3f4f6;
  border-radius: 8px;
  margin-bottom: 4px;
  padding: 4px 8px;
  font-size: 12px;
  animation: 4s ease-in-out forwards CommentInput-module__lS6XBG__fadeInOut;
}

@keyframes CommentInput-module__lS6XBG__fadeInOut {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.CommentInput-module__lS6XBG__inputRow {
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  display: flex;
}

.CommentInput-module__lS6XBG__inputRow button.IconButton {
  background: none !important;
  border: none !important;
}

.CommentInput-module__lS6XBG__inputRow button.IconButton:hover:not(:disabled) {
  background: #f3f4f6 !important;
}

.CommentInput-module__lS6XBG__inputRow button.IconButton:active:not(:disabled) {
  background: #e5e7eb !important;
}

.CommentInput-module__lS6XBG__inputContainer button.IconButton {
  background: none !important;
  border: none !important;
}

.CommentInput-module__lS6XBG__inputContainer button.IconButton:hover:not(:disabled) {
  background: #f3f4f6 !important;
}

.CommentInput-module__lS6XBG__inputContainer button.IconButton:active:not(:disabled) {
  background: #e5e7eb !important;
}

.CommentInput-module__lS6XBG__inputContainer textarea.Textarea__textarea__Ok- {
  height: 36px !important;
  min-height: 36px !important;
  padding: 8px !important;
  overflow: hidden !important;
}

.CommentInput-module__lS6XBG__textarea {
  resize: none;
  color: #111827;
  box-sizing: border-box;
  background: none;
  border: none;
  border-radius: 0;
  flex: 1;
  height: 36px;
  min-height: 36px;
  padding: 8px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  overflow: hidden !important;
}

.CommentInput-module__lS6XBG__textarea:focus {
  outline: none;
}

.CommentInput-module__lS6XBG__textarea:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.CommentInput-module__lS6XBG__textarea::placeholder {
  color: #9ca3af;
}

.CommentInput-module__lS6XBG__attachButton, .CommentInput-module__lS6XBG__emojiButton {
  cursor: pointer;
  flex-shrink: 0;
  color: #6b7280 !important;
  background: none !important;
  border: none !important;
  border-radius: 50% !important;
  justify-content: center !important;
  align-items: center !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  padding: 8px !important;
  transition: background-color .2s !important;
  display: flex !important;
}

.CommentInput-module__lS6XBG__attachButton:hover:not(:disabled), .CommentInput-module__lS6XBG__emojiButton:hover:not(:disabled) {
  background: #f3f4f6 !important;
}

.CommentInput-module__lS6XBG__attachButton:active:not(:disabled), .CommentInput-module__lS6XBG__emojiButton:active:not(:disabled) {
  background: #e5e7eb !important;
}

:is(.CommentInput-module__lS6XBG__attachButton button, .CommentInput-module__lS6XBG__emojiButton button) {
  background: none !important;
  border: none !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
}

:is(.CommentInput-module__lS6XBG__attachButton:hover:not(:disabled) button:not(:disabled), .CommentInput-module__lS6XBG__emojiButton:hover:not(:disabled) button:not(:disabled)) {
  background: #f3f4f6 !important;
}

:is(.CommentInput-module__lS6XBG__attachButton:active:not(:disabled) button:not(:disabled), .CommentInput-module__lS6XBG__emojiButton:active:not(:disabled) button:not(:disabled)) {
  background: #e5e7eb !important;
}

.CommentInput-module__lS6XBG__attachButton:disabled, .CommentInput-module__lS6XBG__emojiButton:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.CommentInput-module__lS6XBG__sendButton {
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s;
  box-shadow: 0 2px 4px #3b82f64d;
  background: #3b82f6 !important;
  border: none !important;
  border-radius: 50% !important;
  justify-content: center !important;
  align-items: center !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
  display: flex !important;
}

.CommentInput-module__lS6XBG__sendButton:hover:not(:disabled), .CommentInput-module__lS6XBG__sendButton:hover:not(:disabled) button {
  transform: scale(1.05);
  background: #2563eb !important;
}

.CommentInput-module__lS6XBG__sendButton button {
  background: #3b82f6 !important;
  border: none !important;
  border-radius: 50% !important;
  justify-content: center !important;
  align-items: center !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
  display: flex !important;
}

.CommentInput-module__lS6XBG__sendButton:hover:not(:disabled) button:not(:disabled) {
  background: #2563eb !important;
}

.CommentInput-module__lS6XBG__sendButton:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.CommentInput-module__lS6XBG__sendButton svg {
  width: 20px;
  height: 20px;
}

/* [project]/modules/comment/components/ReactionContextMenu.module.css [app-client] (css) */
.ReactionContextMenu-module__jn77wW__overlay {
  z-index: 1000;
  background: none;
  position: fixed;
  inset: 0;
}

.ReactionContextMenu-module__jn77wW__floatingMenu {
  z-index: 1001;
  pointer-events: none;
  flex-direction: column-reverse;
  gap: 6px;
  width: auto;
  animation: .2s ease-out ReactionContextMenu-module__jn77wW__fadeInScale;
  display: flex;
  position: fixed;
}

@keyframes ReactionContextMenu-module__jn77wW__fadeInScale {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ReactionContextMenu-module__jn77wW__reactionsBlock {
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1002;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  padding: 4px;
  position: relative;
  box-shadow: 0 4px 20px #00000026;
}

.ReactionContextMenu-module__jn77wW__actionsBlock {
  pointer-events: auto;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  align-self: center;
  width: auto;
  min-width: 200px;
  max-width: 240px;
  padding: 2px;
  box-shadow: 0 4px 20px #00000026;
}

.ReactionContextMenu-module__jn77wW__quickReactions {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 4px;
  padding: 2px;
  display: flex;
}

.ReactionContextMenu-module__jn77wW__emojiButton {
  cursor: pointer;
  pointer-events: auto;
  z-index: 1003;
  background: none;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 24px;
  transition: all .2s;
  display: flex;
  position: relative;
}

.ReactionContextMenu-module__jn77wW__emojiButton:hover {
  background: none;
  transform: scale(1.15);
}

.ReactionContextMenu-module__jn77wW__emojiButtonActive {
  opacity: .7;
  background: none;
  border: none;
  transform: scale(1.15);
}

.ReactionContextMenu-module__jn77wW__emoji {
  line-height: 1;
  display: block;
}

.ReactionContextMenu-module__jn77wW__actions {
  flex-direction: column;
  padding: 2px 0;
  display: flex;
}

.ReactionContextMenu-module__jn77wW__actionButton {
  text-align: left;
  color: #111827;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  margin: 1px 0;
  padding: 8px 12px;
  font-size: 14px;
  transition: background-color .2s;
  display: flex;
}

.ReactionContextMenu-module__jn77wW__actionIcon {
  color: #111827;
  stroke: currentColor;
  flex-shrink: 0;
}

.ReactionContextMenu-module__jn77wW__actionButton:hover:not(:disabled) {
  background: #f3f4f6;
}

.ReactionContextMenu-module__jn77wW__actionButton:active:not(:disabled) {
  background: #e5e7eb;
}

.ReactionContextMenu-module__jn77wW__actionButton:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.ReactionContextMenu-module__jn77wW__actionButtonDanger {
  color: #dc2626;
}

.ReactionContextMenu-module__jn77wW__actionButtonDanger:hover:not(:disabled) {
  color: #b91c1c;
  background: #fee2e2;
}

.ReactionContextMenu-module__jn77wW__actionButtonDanger .ReactionContextMenu-module__jn77wW__actionIcon {
  color: #dc2626;
}

@media (max-width: 768px) {
  .ReactionContextMenu-module__jn77wW__reactionsBlock {
    border-radius: 20px;
  }

  .ReactionContextMenu-module__jn77wW__actionsBlock {
    border-radius: 14px;
  }

  .ReactionContextMenu-module__jn77wW__emojiButton {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .ReactionContextMenu-module__jn77wW__actionButton {
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* [project]/modules/comment/components/NotificationItem.module.css [app-client] (css) */
.NotificationItem-module__hsPDSq__item {
  cursor: pointer;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  transition: background .15s;
  display: flex;
  position: relative;
}

.NotificationItem-module__hsPDSq__item:hover {
  background: #00000008;
}

.NotificationItem-module__hsPDSq__item:active {
  background: #0000000f;
}

.NotificationItem-module__hsPDSq__unread {
  background: #3b82f60d;
}

.NotificationItem-module__hsPDSq__avatar {
  flex-shrink: 0;
}

.NotificationItem-module__hsPDSq__content {
  flex: 1;
  min-width: 0;
}

.NotificationItem-module__hsPDSq__text {
  color: #111827;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.4;
}

.NotificationItem-module__hsPDSq__text strong {
  font-weight: 600;
}

.NotificationItem-module__hsPDSq__preview {
  color: #6b7280;
  font-style: italic;
}

.NotificationItem-module__hsPDSq__time {
  color: #9ca3af;
  margin-top: 4px;
  font-size: 12px;
}

.NotificationItem-module__hsPDSq__dot {
  background: #3b82f6;
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
}

/* [project]/modules/comment/components/NotificationsScreen.module.css [app-client] (css) */
.NotificationsScreen-module__79zgha__screen {
  background: #fff;
  flex-direction: column;
  height: 100%;
  display: flex;
}

.NotificationsScreen-module__79zgha__topBar {
  background: #fff;
  border-bottom: 1px solid #0000001a;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  display: flex;
}

.NotificationsScreen-module__79zgha__backButton {
  color: #3b82f6;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
}

.NotificationsScreen-module__79zgha__topTitle {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
}

.NotificationsScreen-module__79zgha__list {
  flex: 1;
  overflow-y: auto;
}

.NotificationsScreen-module__79zgha__empty {
  color: #9ca3af;
  justify-content: center;
  align-items: center;
  height: 200px;
  font-size: 14px;
  display: flex;
}

.NotificationsScreen-module__79zgha__groupLabel {
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #f9fafb;
  border-bottom: 1px solid #0000000d;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
}

.NotificationsScreen-module__79zgha__preferencesSection {
  background: #fff;
  border-top: 1px solid #0000001a;
  padding: 16px;
}

.NotificationsScreen-module__79zgha__preferenceRow {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.NotificationsScreen-module__79zgha__preferenceLabel {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

/* [project]/modules/comment/components/MyCommentsScreen.module.css [app-client] (css) */
.MyCommentsScreen-module__GMDsHG__screen {
  background: #fff;
  flex-direction: column;
  height: 100%;
  display: flex;
}

.MyCommentsScreen-module__GMDsHG__topBar {
  background: #fff;
  border-bottom: 1px solid #0000001a;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  display: flex;
}

.MyCommentsScreen-module__GMDsHG__backButton {
  color: #3b82f6;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
}

.MyCommentsScreen-module__GMDsHG__topTitle {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
}

.MyCommentsScreen-module__GMDsHG__list {
  flex: 1;
  overflow-y: auto;
}

.MyCommentsScreen-module__GMDsHG__empty {
  color: #9ca3af;
  justify-content: center;
  align-items: center;
  height: 200px;
  font-size: 14px;
  display: flex;
}

.MyCommentsScreen-module__GMDsHG__commentItem {
  border-bottom: 1px solid #0000000d;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  display: flex;
}

.MyCommentsScreen-module__GMDsHG__commentContent {
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

.MyCommentsScreen-module__GMDsHG__commentContent:hover {
  opacity: .8;
}

.MyCommentsScreen-module__GMDsHG__commentHeader {
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  display: flex;
}

.MyCommentsScreen-module__GMDsHG__commentTime {
  color: #9ca3af;
  font-size: 12px;
}

.MyCommentsScreen-module__GMDsHG__commentText {
  color: #374151;
  word-break: break-word;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.MyCommentsScreen-module__GMDsHG__repliesCount {
  color: #3b82f6;
  margin-top: 4px;
  font-size: 12px;
}

.MyCommentsScreen-module__GMDsHG__deleteButton {
  color: #d1d5db;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: all .15s;
  display: flex;
}

.MyCommentsScreen-module__GMDsHG__deleteButton:hover {
  color: #ef4444;
  background: #ef444414;
}

/* [project]/app/page.module.css [app-client] (css) */
.page-module__E0kJGG__page {
  background: #b8e0f5;
  flex-direction: column;
  height: 100vh;
  display: flex;
}

.page-module__E0kJGG__header {
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #0000001a;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 8px 12px;
  display: flex;
  position: sticky;
  top: 0;
}

.page-module__E0kJGG__userAvatar {
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  transition: opacity .15s;
}

.page-module__E0kJGG__userAvatar:hover {
  opacity: .8;
}

.page-module__E0kJGG__headerCenter {
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: 0;
  display: flex;
}

.page-module__E0kJGG__headerRight {
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  display: flex;
}

.page-module__E0kJGG__title {
  color: #111827;
  align-items: center;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
}

.page-module__E0kJGG__count {
  color: #6b7280;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
}

.page-module__E0kJGG__bellContainer {
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 6px;
  transition: background .15s;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__bellContainer:hover {
  background: #f3f4f6;
}

.page-module__E0kJGG__badge {
  color: #fff;
  text-align: center;
  pointer-events: none;
  background: #ef4444;
  border-radius: 8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  position: absolute;
  top: 0;
  right: 0;
}

.page-module__E0kJGG__closeButton {
  color: #6b7280;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  font-size: 24px;
  line-height: 1;
  transition: all .2s;
  display: flex;
}

.page-module__E0kJGG__closeButton:hover {
  color: #111827;
  background: #f3f4f6;
}

.page-module__E0kJGG__main {
  flex-direction: column;
  flex: 1;
  min-height: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.page-module__E0kJGG__footer {
  z-index: 10;
  background: #b8e0f5;
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
}

.page-module__E0kJGG__loading {
  color: #6b7280;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 16px;
  display: flex;
}

/*# sourceMappingURL=_e0505421._.css.map*/