:root {
  --discord-primary-dark: #1e1f22;
  --discord-secondary-dark: #2b2d31;
  --discord-tertiary-dark: #313338;
  --discord-input-dark: #383a40;

  --discord-blurple: #5865f2;
  --discord-green: #23a559;
  --discord-yellow: #f0b132;
  --discord-red: #f23f42;
  --discord-fuchsia: #eb459e;

  --discord-text-normal: #f2f3f5;
  --discord-text-muted: #949ba4;
  --discord-text-link: #00a8fc;

  --discord-header-primary: #f2f3f5;
  --discord-header-secondary: #b5bac1;

  --discord-channeltextarea-background: #383a40;
  --discord-background-modifier-hover: rgba(255, 255, 255, 0.05);
  --discord-background-modifier-active: rgba(255, 255, 255, 0.07);
  --discord-background-modifier-selected: rgba(255, 255, 255, 0.1);

  --discord-guild-background: #2f3136;
  --discord-white: #ffffff;
  --discord-black: #000000;
  --discord-dark: #2c2f33;
  --discord-lighter: #b5bac1;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 0.75rem;
  --space-lg: 1rem;
  --space-xl: 1.25rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-xxl: 1rem;
  --radius-server: 50%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.375rem;
  color: var(--discord-text-normal);
  background: var(--discord-primary-dark);
  overflow-x: hidden;
  overflow-y: auto;
  font-weight: 400;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
  margin: 4px;
}

::-webkit-scrollbar-thumb {
  background: #1a1b1e;
  border-radius: 4px;
  border: 2px solid var(--discord-tertiary-dark);
  min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
  background: #141517;
}

input,
textarea,
button {
  font-family: "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: var(--discord-text-link);
}

textarea {
  min-height: 44px;
  max-height: 300px;
  resize: none;
  border: none;
  background: var(--discord-channeltextarea-background);
  color: var(--discord-text-normal);
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 1rem;
}

textarea:focus {
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
}

button:focus {
  outline: none;
}

.channel-name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-unread {
  font-weight: 600;
}

.discord-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.status-online {
  background-color: var(--discord-green);
}

.status-idle {
  background-color: var(--discord-yellow);
}

.status-dnd {
  background-color: var(--discord-red);
}

.status-offline {
  background-color: var(--discord-text-muted);
}

.text-muted {
  color: var(--discord-text-muted);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}

.animate-fade-out {
  animation: fadeOut 0.3s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.3s ease-out;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

.group:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

.group:hover .tooltip-text {
  display: block;
}

.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-content {
  position: absolute;
  background: #18191c;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip-wrapper[data-position="right"] .tooltip-content {
  left: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
}

.tooltip-wrapper[data-position="left"] .tooltip-content {
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
}

.tooltip-wrapper[data-position="top"] .tooltip-content {
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
}

.tooltip-wrapper[data-position="bottom"] .tooltip-content {
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
}

.tooltip-wrapper:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.5s;
}

.tooltip-wrapper[data-position="right"] .tooltip-content::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #18191c;
}

.tooltip-wrapper[data-position="left"] .tooltip-content::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #18191c;
}

.tooltip-wrapper[data-position="top"] .tooltip-content::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #18191c;
}

.tooltip-wrapper[data-position="bottom"] .tooltip-content::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: #18191c;
}

.hover-stable {
  position: relative;
}

[data-action="create-server"] {
  transition: all 0.2s ease !important;
}

[data-action="create-server"]:hover {
  background-color: #23a559 !important;
  border-radius: 1rem !important;
}

[data-action="create-server"]:hover i {
  color: white !important;
}

[data-action="create-server"] i {
  color: #23a559 !important;
}

.global-server-icon,
.w-12.h-12.rounded-full {
  transition: all 0.2s ease;
}

.global-server-icon:hover,
.w-12.h-12.rounded-full:hover {
  border-radius: 1rem !important;
}

#authContainer {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#authContainer:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-group {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.2s ease;
}

.form-group:focus-within {
  transform: translateY(-2px) scale(1.01);
}

button[type="submit"],
.btn-google {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

button[type="submit"]:hover,
.btn-google:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bg-discord-primary {
  background-color: #5865f2;
}

.bg-discord-primary-dark {
  background-color: #4752c4;
}

.bg-discord-green {
  background-color: #23a559;
}

.bg-discord-dark {
  background-color: #202225;
}

.bg-discord-background {
  background-color: var(--discord-primary-dark);
}

.bg-discord-message-input {
  background-color: var(--discord-channeltextarea-background);
}

.border-discord-input-border {
  border-color: rgba(255, 255, 255, 0.1);
}

.text-discord-muted {
  color: var(--discord-text-muted);
}

.placeholder-discord-muted::placeholder {
  color: var(--discord-text-muted);
}

.scrollbar-thin {
  scrollbar-width: thin;
}

.scrollbar-track-discord-dark {
  scrollbar-color: transparent var(--discord-tertiary-dark);
}

.scrollbar-thumb-discord-scrollbar {
  scrollbar-color: #1a1b1e var(--discord-tertiary-dark);
}

.focus-within\:border-discord-primary:focus-within {
  border-color: var(--discord-blurple);
}

.hover\:bg-discord-primary:hover {
  background-color: #5865f2;
}

.hover\:bg-discord-primary-dark:hover {
  background-color: #4752c4;
}

.hover\:bg-discord-green:hover {
  background-color: #23a559;
}

.hover\:bg-discord-dark:hover {
  background-color: #202225;
}

.hover\:rounded-2xl:hover {
  border-radius: 1rem;
}


.simple-message-composer .send-button {
  transition: all 0.2s ease-in-out;
}

.simple-message-composer .send-button:not(:disabled):hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(88, 101, 242, 0.4);
}

.simple-message-composer .send-button:not(:disabled):active {
  transform: scale(0.95);
}

.simple-message-composer .send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.simple-message-composer .message-input {
  transition: all 0.2s ease-in-out;
  resize: none;
  overflow-y: auto;
}

.simple-message-composer .message-input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #5865f2;
}

.typing-animation {
  display: inline-flex;
  align-items: center;
}

.typing-animation .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--discord-text-muted);
  margin: 0 1px;
  animation: typing-dots 1.4s infinite ease-in-out;
}

.typing-animation .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-animation .dot:nth-child(2) {
  animation-delay: -0.16s;
}

.typing-animation .dot:nth-child(3) {
  animation-delay: 0s;
}

@keyframes typing-dots {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

#typing-indicator {
  transition: all 0.2s ease-in-out;
  font-size: 0.75rem;
  font-style: italic;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 4px 12px;
  margin: 0 16px 8px;
  border-left: 3px solid var(--discord-primary);
}

#typing-indicator.hidden {
  opacity: 0;
  transform: translateY(-5px);
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.message-composer-focus-ring:focus-within {
  box-shadow: 0 0 0 2px var(--discord-blurple),
    0 0 0 4px rgba(88, 101, 242, 0.2);
}

.custom-wifi-tooltip {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}

.wifi-tooltip-wrapper {
  position: relative;
  display: inline-block;
}


@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-20px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(-5px);
  }
  70% {
    transform: scale(0.9) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(88, 101, 242, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
  }
}

.animate-slide-in {
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-out {
  animation: slideOut 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-shake {
  animation: shake 0.5s ease-in-out;
}

.animate-bounce-in {
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}


@keyframes simple-fade {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.6;
  }
}


.skeleton, 
.skeleton-loader > div {
  animation: simple-fade 2s ease-in-out infinite;
  background-color: #36393f;
  transition: opacity 0.3s ease;
}


@keyframes skeleton-pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.6;
  }
}




.skeleton-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #4f545c;
}

.skeleton-text {
  height: 12px;
  background-color: #4f545c;
  border-radius: 4px;
  width: 100%;
}

.skeleton-text-sm {
  height: 10px;
  width: 60%;
}

.skeleton-item {
  padding: 8px 0;
  opacity: 0.7;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


.dropdown-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item-hover {
  transition: all 0.2s ease;
}

.dropdown-item-hover:hover {
  transform: translateX(2px);
  background-color: rgba(88, 101, 242, 0.1);
}


.input-glow-success {
  border-color: #23a559 !important;
  box-shadow: 0 0 0 2px rgba(35, 165, 89, 0.2) !important;
}

.input-glow-primary {
  border-color: #5865f2 !important;
  box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.2) !important;
}


.animate-delay-0 { animation-delay: 0ms; }
.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-500 { animation-delay: 500ms; }

.text-discord-green {
  color: #23a559;
}

.hover\:text-discord-green:hover {
  color: #23a559;
}

.hover\:bg-discord-green:hover {
  background-color: #23a559;
}

.text-discord-lighter {
  color: #b5bac1;
}

.mic-btn, .deafen-btn {
  background: none !important;
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mic-btn:hover, .deafen-btn:hover {
  opacity: 0.8 !important;
}

.user-profile-section {
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .user-profile-section {
    padding: 8px;
  }
  
  .user-profile-section .w-8 {
    width: 28px !important;
    height: 28px !important;
  }
  
  .user-profile-section .text-sm {
    font-size: 12px;
  }
  
  .user-profile-section .text-xs {
    font-size: 11px;
  }
  
  .mic-btn, .deafen-btn {
    padding: 4px;
  }
  
  .mic-btn i, .deafen-btn i {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .user-profile-section {
    padding: 6px;
  }
  
  .user-profile-section .space-x-2 {
    gap: 4px;
  }
  
  .user-profile-section .w-8 {
    width: 24px !important;
    height: 24px !important;
  }
  
  .user-profile-section .w-3 {
    width: 10px !important;
    height: 10px !important;
  }
}

.bg-discord-background-modifier-hover {
  background-color: rgba(79, 84, 92, 0.16);
}

.hover\:bg-discord-background-modifier-hover:hover {
  background-color: rgba(79, 84, 92, 0.16);
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@media (max-width: 1024px) {
  .w-60 {
    width: 240px !important;
    min-width: 240px !important;
  }
}

@media (max-width: 768px) {
  .w-60 {
    width: 200px !important;
    min-width: 200px !important;
  }
  
  .text-sm {
    font-size: 12px;
  }
  
  .text-xs {
    font-size: 10px;
  }
}

@media (max-width: 640px) {
  .w-60 {
    width: 180px !important;
    min-width: 180px !important;
  }
  
  .p-4 {
    padding: 12px !important;
  }
  
  .px-4 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

@media (max-width: 480px) {
  .w-60 {
    width: 160px !important;
    min-width: 160px !important;
  }
  
  .text-sm {
    font-size: 11px;
  }
  
  .text-xs {
    font-size: 9px;
  }
  
  .p-4 {
    padding: 8px !important;
  }
}


[data-action="create-server"] {
  transition: all 0.2s ease !important;
}

[data-action="create-server"]:hover {
  background-color: #23a559 !important;
  border-radius: 1rem !important;
}

[data-action="create-server"]:hover i {
  color: white !important;
}

[data-action="create-server"] i {
  color: #23a559 !important;
}


.text-discord-green,
.discord-add-server-icon,
.discord-explore-server-icon {
  color: #23a559 !important;
}

.bg-discord-green,
.hover\:bg-discord-green:hover {
  background-color: #23a559 !important;
}


.message-temp-edit {
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: relative;
}

.edit-error-indicator {
  color: #ed4245;
  cursor: help;
  animation: error-shake 0.5s ease-in-out;
}

.message-edit-failed {
  transition: all 0.3s ease;
  border-left: 3px solid #ed4245 !important;
  background: rgba(237, 66, 69, 0.1);
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: -8px;
}

.message-edit-failed::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #ed4245;
  border-radius: 50%;
  animation: error-blink 1s ease-in-out infinite;
}

@keyframes error-shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

@keyframes error-blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0.3;
  }
}

.message-edit-confirmed {
  animation: edit-success-flash 0.5s ease-in-out;
}

@keyframes edit-success-flash {
  0% {
    background: rgba(35, 165, 89, 0.2);
  }
  100% {
    background: transparent;
  }
}


.message-editing {
  background: rgba(88, 101, 242, 0.1) !important;
  border-radius: 8px;
  padding: 8px;
  margin: 4px 0;
  border-left: 3px solid #5865f2;
  transition: all 0.2s ease;
}

.edit-message-container {
  animation: edit-form-slide-in 0.2s ease-out;
}

.edit-message-container textarea {
  transition: all 0.2s ease;
  min-height: 60px;
  font-family: inherit;
  line-height: 1.4;
}

.edit-message-container textarea:focus {
  transform: scale(1.01);
  box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.3);
}

.edit-message-container button {
  transition: all 0.15s ease;
}

.edit-message-container button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.edit-message-container button:active:not(:disabled) {
  transform: translateY(0);
}

@keyframes edit-form-slide-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skeleton-checkbox {
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 3px;
    animation: shimmer 1.5s ease-in-out infinite;
}

.user-checkbox:checked {
    background-color: #5865f2;
    border-color: #5865f2;
}

.modal-user-item:hover .user-checkbox {
    border-color: #5865f2;
}

#dm-selected-users .inline-flex {
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#group-options {
    transition: all 0.3s ease-in-out;
}

#group-options.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

#group-options:not(.hidden) {
    opacity: 1;
    max-height: 200px;
}

.nitro-crown {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.6));
  animation: crown-subtle-glow 3s ease-in-out infinite alternate;
  transition: all 0.2s ease;
  object-fit: contain;
}

.nitro-crown:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.9));
  animation: crown-hover-glow 1s ease-in-out infinite alternate;
}

@keyframes crown-subtle-glow {
  0% {
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.6));
  }
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
  }
}

@keyframes crown-hover-glow {
  0% {
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.9));
    transform: scale(1.1);
  }
  100% {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 1));
    transform: scale(1.15);
  }
}

.nitro-crown-wrapper {
  position: relative;
  display: inline-block;
}

.nitro-crown-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #18191c;
  color: #ffd700;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2147483647;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.nitro-crown-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #18191c;
}

.nitro-crown-wrapper:hover .nitro-crown-tooltip {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}

.highlight-message {
  background-color: rgba(250, 166, 26, 0.1) !important;
  border-left: 3px solid #faa61a !important;
  padding-left: 8px !important;
  animation: messageHighlight 2s ease-out;
}

@keyframes messageHighlight {
  0% {
    background-color: rgba(250, 166, 26, 0.3);
    transform: scale(1.02);
  }
  100% {
    background-color: rgba(250, 166, 26, 0.1);
    transform: scale(1);
  }
}

.search-result-item {
  transition: all 0.15s ease;
}

.search-result-item:hover {
  background-color: #404249 !important;
}

.search-result-item.selected {
  background-color: #5865f2 !important;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
