/* [project]/apps/web/src/components/skeleton/Skeleton.module.css [app-client] (css) */
.Skeleton-module__vtSFlW__skeleton {
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%) 0 0 / 200% 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.Skeleton-module__vtSFlW__skeletonText {
  border-radius: 4px;
  margin-bottom: .5rem;
  transform: scale(1, .8);
}

.Skeleton-module__vtSFlW__skeletonRectangular {
  border-radius: 0;
}

.Skeleton-module__vtSFlW__skeletonCircular {
  border-radius: 50%;
}

.Skeleton-module__vtSFlW__skeletonRounded {
  border-radius: 12px;
}

.Skeleton-module__vtSFlW__animationPulse {
  animation: 1.5s ease-in-out infinite Skeleton-module__vtSFlW__pulse;
}

.Skeleton-module__vtSFlW__animationWave {
  animation: 1.5s linear infinite Skeleton-module__vtSFlW__wave;
}

@keyframes Skeleton-module__vtSFlW__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

@keyframes Skeleton-module__vtSFlW__wave {
  0% {
    background-position: -200% 0;
  }

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

.Skeleton-module__vtSFlW__textSkeletonContainer {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.Skeleton-module__vtSFlW__cardSkeleton {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px #0000001a;
}

.Skeleton-module__vtSFlW__cardSkeletonHeader {
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.Skeleton-module__vtSFlW__cardSkeletonHeaderText {
  flex-direction: column;
  flex: 1;
  gap: .5rem;
  display: flex;
}

.Skeleton-module__vtSFlW__cardSkeletonContent {
  margin-bottom: 1rem;
}

@media (prefers-color-scheme: dark) {
  .Skeleton-module__vtSFlW__skeleton {
    background: linear-gradient(90deg, #334155 0%, #475569 50%, #334155 100%);
  }

  .Skeleton-module__vtSFlW__cardSkeleton {
    background: #1e293b;
    box-shadow: 0 2px 8px #0000004d;
  }
}

.Skeleton-module__vtSFlW__skeleton[aria-busy="true"] {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

/* [project]/apps/web/src/components/profile/profile-effects.module.css [app-client] (css) */
.profile-effects-module__siPiLa__shimmer {
  position: relative;
  overflow: hidden;
}

.profile-effects-module__siPiLa__shimmer:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #0000 0%, #ffffff14 40%, #ffffff26 50%, #ffffff14 60%, #0000 100%);
  transition: transform .6s;
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
}

.profile-effects-module__siPiLa__shimmer:hover:after {
  transform: translateX(100%);
}

.profile-effects-module__siPiLa__glassReflection {
  position: relative;
  overflow: hidden;
}

.profile-effects-module__siPiLa__glassReflection:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, #0000 40%, #ffffff0a 45%, #ffffff14 50%, #ffffff0a 55%, #0000 60%);
  width: 200%;
  height: 200%;
  animation: 8s ease-in-out infinite profile-effects-module__siPiLa__glassMove;
  position: absolute;
  top: -50%;
  left: -50%;
}

@keyframes profile-effects-module__siPiLa__glassMove {
  0%, 100% {
    transform: translateX(-30%)translateY(-30%)rotate(0);
  }

  50% {
    transform: translateX(30%)translateY(30%)rotate(5deg);
  }
}

.profile-effects-module__siPiLa__gradientShift {
  background-size: 200% 200%;
  animation: 6s infinite profile-effects-module__siPiLa__gradientFlow;
}

@keyframes profile-effects-module__siPiLa__gradientFlow {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

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

.profile-effects-module__siPiLa__textGradient {
  color: #0000;
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 4s linear infinite profile-effects-module__siPiLa__textGradientFlow;
}

@keyframes profile-effects-module__siPiLa__textGradientFlow {
  0% {
    background-position: 0%;
  }

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

.profile-effects-module__siPiLa__borderGlow {
  position: relative;
}

.profile-effects-module__siPiLa__borderGlow:before {
  content: "";
  border-radius: inherit;
  -webkit-mask-composite: xor;
  pointer-events: none;
  background: linear-gradient(135deg, #6366f14d, #a855f74d, #ec48994d, #6366f14d) 0 0 / 300% 300%;
  padding: 1px;
  animation: 4s infinite profile-effects-module__siPiLa__borderGlowFlow;
  position: absolute;
  inset: -1px;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

@keyframes profile-effects-module__siPiLa__borderGlowFlow {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

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

.profile-effects-module__siPiLa__floatingElement {
  animation: 4s ease-in-out infinite profile-effects-module__siPiLa__float;
}

@keyframes profile-effects-module__siPiLa__float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.profile-effects-module__siPiLa__particleBg {
  position: relative;
  overflow: hidden;
}

.profile-effects-module__siPiLa__particleBg:before {
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 30%, #6366f10f 1px, #0000 1px), radial-gradient(circle at 80% 70%, #a855f70f 1px, #0000 1px), radial-gradient(circle, #ec48990a 1px, #0000 1px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
  animation: 20s linear infinite profile-effects-module__siPiLa__particleDrift;
  position: absolute;
  inset: 0;
}

@keyframes profile-effects-module__siPiLa__particleDrift {
  0% {
    transform: translateY(0)translateX(0);
  }

  100% {
    transform: translateY(-60px)translateX(30px);
  }
}

.profile-effects-module__siPiLa__ringPulse {
  position: relative;
}

.profile-effects-module__siPiLa__ringPulse:after {
  content: "";
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  border: 2px solid;
  animation: 2s ease-out infinite profile-effects-module__siPiLa__ringPulseAnim;
  position: absolute;
  inset: -4px;
}

@keyframes profile-effects-module__siPiLa__ringPulseAnim {
  0% {
    opacity: .5;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-effects-module__siPiLa__shimmer:after, .profile-effects-module__siPiLa__glassReflection:before, .profile-effects-module__siPiLa__particleBg:before, .profile-effects-module__siPiLa__ringPulse:after, .profile-effects-module__siPiLa__gradientShift, .profile-effects-module__siPiLa__textGradient, .profile-effects-module__siPiLa__floatingElement, .profile-effects-module__siPiLa__borderGlow:before {
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .profile-effects-module__siPiLa__particleBg:before, .profile-effects-module__siPiLa__glassReflection:before {
    display: none;
  }

  .profile-effects-module__siPiLa__shimmer:after {
    transition-duration: .4s;
  }
}

[dir="rtl"] .profile-effects-module__siPiLa__shimmer:after {
  transform: translateX(100%);
}

[dir="rtl"] .profile-effects-module__siPiLa__shimmer:hover:after {
  transform: translateX(-100%);
}

/* [project]/apps/web/src/components/role-badge/RoleBadge.module.css [app-client] (css) */
.RoleBadge-module__8fyl6W__badge {
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  border-radius: 9999px;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  transition: transform .25s, box-shadow .25s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.RoleBadge-module__8fyl6W__badge:hover {
  transform: translateY(-1px)scale(1.02);
}

.RoleBadge-module__8fyl6W__icon {
  flex-shrink: 0;
  align-items: center;
  font-size: 13px;
  display: inline-flex;
}

.RoleBadge-module__8fyl6W__badge:after {
  content: "";
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, #0000 0%, #ffffff26 50%, #0000 100%);
  width: 60%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: -100%;
}

.RoleBadge-module__8fyl6W__badge:hover:after {
  opacity: 1;
  animation: .6s ease-out forwards RoleBadge-module__8fyl6W__sheen;
}

.RoleBadge-module__8fyl6W__member {
  color: #4b5563;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border: 1px solid #d1d5db99;
  box-shadow: 0 1px 3px #0000000f;
}

.RoleBadge-module__8fyl6W__member:hover {
  box-shadow: 0 3px 8px #0000001a;
}

.dark .RoleBadge-module__8fyl6W__member {
  color: #d1d5db;
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  border-color: #4b556380;
  box-shadow: 0 1px 3px #0003;
}

.dark .RoleBadge-module__8fyl6W__member:hover {
  box-shadow: 0 3px 8px #00000059;
}

.RoleBadge-module__8fyl6W__moderator {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: 1px solid #3b82f64d;
  box-shadow: 0 2px 8px #3b82f640, inset 0 1px #ffffff26;
}

.RoleBadge-module__8fyl6W__moderator:hover {
  box-shadow: 0 4px 14px #3b82f659, inset 0 1px #ffffff26;
}

.dark .RoleBadge-module__8fyl6W__moderator {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: #2563eb66;
  box-shadow: 0 2px 8px #2563eb4d, inset 0 1px #ffffff1a;
}

.dark .RoleBadge-module__8fyl6W__moderator:hover {
  box-shadow: 0 4px 14px #2563eb66, inset 0 1px #ffffff1a;
}

.RoleBadge-module__8fyl6W__moderator .RoleBadge-module__8fyl6W__pulseRing {
  display: none;
}

.RoleBadge-module__8fyl6W__admin {
  color: #fff;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  border: 1px solid #8b5cf64d;
  box-shadow: 0 2px 10px #8b5cf640, inset 0 1px #ffffff26;
}

.RoleBadge-module__8fyl6W__admin:hover {
  box-shadow: 0 4px 16px #8b5cf666, inset 0 1px #ffffff26;
}

.dark .RoleBadge-module__8fyl6W__admin {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  border-color: #7c3aed66;
  box-shadow: 0 2px 10px #7c3aed4d, inset 0 1px #ffffff1a;
}

.dark .RoleBadge-module__8fyl6W__admin:hover {
  box-shadow: 0 4px 16px #7c3aed73, inset 0 1px #ffffff1a;
}

.RoleBadge-module__8fyl6W__admin .RoleBadge-module__8fyl6W__sparkle {
  display: none;
}

.RoleBadge-module__8fyl6W__superAdmin {
  color: #fff;
  text-shadow: 0 1px 2px #00000026;
  background: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #dc2626 100%);
  border: 1px solid #ffc86459;
  box-shadow: 0 2px 12px #ef44444d, 0 0 8px #f9731633, inset 0 1px #ffffff40;
}

.RoleBadge-module__8fyl6W__superAdmin:hover {
  box-shadow: 0 4px 20px #ef444473, 0 0 16px #f973164d, inset 0 1px #ffffff40;
}

.dark .RoleBadge-module__8fyl6W__superAdmin {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 50%, #b91c1c 100%);
  border-color: #fbbf244d;
  box-shadow: 0 2px 12px #dc262659, 0 0 10px #ea580c40, inset 0 1px #ffffff26;
}

.dark .RoleBadge-module__8fyl6W__superAdmin:hover {
  box-shadow: 0 4px 20px #dc262680, 0 0 18px #ea580c59, inset 0 1px #ffffff26;
}

.RoleBadge-module__8fyl6W__superAdmin:after {
  opacity: 1;
  background: linear-gradient(90deg, #0000 0%, #ffffff14 25%, #ffffff4d 50%, #ffffff14 75%, #0000 100%);
  width: 40%;
  animation: 6s ease-in-out infinite RoleBadge-module__8fyl6W__superSheen;
}

.RoleBadge-module__8fyl6W__crownIcon {
  filter: drop-shadow(0 0 3px #fbbf2499) drop-shadow(0 1px 1px #0003);
  transition: filter .3s, transform .3s;
}

.RoleBadge-module__8fyl6W__superAdmin:hover .RoleBadge-module__8fyl6W__crownIcon {
  filter: drop-shadow(0 0 5px #fbbf24cc) drop-shadow(0 0 10px #fbbf2466) drop-shadow(0 1px 1px #0003);
  transform: scale(1.1);
}

.RoleBadge-module__8fyl6W__unknown {
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  border: 1px solid #6366f14d;
  box-shadow: 0 2px 6px #6366f140;
}

.RoleBadge-module__8fyl6W__unknown:hover {
  box-shadow: 0 4px 12px #6366f166;
}

.dark .RoleBadge-module__8fyl6W__unknown {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  border-color: #4f46e566;
  box-shadow: 0 2px 6px #4f46e54d;
}

.RoleBadge-module__8fyl6W__compact {
  letter-spacing: .3px;
  gap: 4px;
  padding: 2px 10px;
  font-size: 10px;
}

.RoleBadge-module__8fyl6W__compact .RoleBadge-module__8fyl6W__icon {
  font-size: 11px;
}

.RoleBadge-module__8fyl6W__large {
  letter-spacing: .6px;
  gap: 7px;
  padding: 6px 18px;
  font-size: 13px;
}

.RoleBadge-module__8fyl6W__large .RoleBadge-module__8fyl6W__icon {
  font-size: 15px;
}

@keyframes RoleBadge-module__8fyl6W__sheen {
  0% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

@keyframes RoleBadge-module__8fyl6W__superSheen {
  0%, 85%, 100% {
    opacity: 0;
    left: -100%;
  }

  5% {
    opacity: 1;
  }

  40% {
    opacity: 1;
    left: 200%;
  }

  45% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .RoleBadge-module__8fyl6W__badge, .RoleBadge-module__8fyl6W__badge:after, .RoleBadge-module__8fyl6W__superAdmin:after, .RoleBadge-module__8fyl6W__crownIcon {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .RoleBadge-module__8fyl6W__badge {
    gap: 4px;
    padding: 3px 10px;
    font-size: 11px;
  }

  .RoleBadge-module__8fyl6W__large {
    padding: 4px 14px;
    font-size: 12px;
  }

  .RoleBadge-module__8fyl6W__compact {
    padding: 2px 8px;
    font-size: 9px;
  }
}

/* [project]/apps/web/src/components/user-dropdown/UserDropdown.module.css [app-client] (css) */
.UserDropdown-module__ZfqNKa__dropdownWrapper {
  display: inline-block;
  position: relative;
}

.UserDropdown-module__ZfqNKa__trigger {
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  margin: 0;
  padding: 0;
  transition: opacity .2s;
  display: inline-flex;
}

.UserDropdown-module__ZfqNKa__trigger:hover {
  opacity: .8;
}

.UserDropdown-module__ZfqNKa__dropdownMenu {
  z-index: 9999;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  min-width: 200px;
  padding: 8px 0;
  animation: .15s ease-out UserDropdown-module__ZfqNKa__slideDown;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
}

@keyframes UserDropdown-module__ZfqNKa__slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.UserDropdown-module__ZfqNKa__dropdownItem {
  color: #374151;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .15s;
  display: flex;
}

.UserDropdown-module__ZfqNKa__dropdownItem:hover {
  background-color: #f3f4f6;
}

.UserDropdown-module__ZfqNKa__icon {
  color: #6b7280;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.dark .UserDropdown-module__ZfqNKa__dropdownMenu {
  background: #1f2937;
  border-color: #374151;
  box-shadow: 0 4px 6px -1px #0000004d, 0 2px 4px -1px #0003;
}

.dark .UserDropdown-module__ZfqNKa__dropdownItem {
  color: #e5e7eb;
}

.dark .UserDropdown-module__ZfqNKa__dropdownItem:hover {
  background-color: #374151;
}

.dark .UserDropdown-module__ZfqNKa__icon {
  color: #9ca3af;
}

@media (max-width: 640px) {
  .UserDropdown-module__ZfqNKa__dropdownMenu {
    min-width: 180px;
  }

  .UserDropdown-module__ZfqNKa__dropdownItem {
    padding: 8px 12px;
    font-size: 13px;
  }

  .UserDropdown-module__ZfqNKa__icon {
    width: 16px;
    height: 16px;
  }
}

.UserDropdown-module__ZfqNKa__adminDivider {
  background: #e5e7eb;
  height: 1px;
  margin: 6px 0;
}

.dark .UserDropdown-module__ZfqNKa__adminDivider {
  background: #374151;
}

.UserDropdown-module__ZfqNKa__adminIcon {
  text-align: center;
  flex-shrink: 0;
  width: 18px;
  font-size: 16px;
}

.UserDropdown-module__ZfqNKa__adminItemDanger {
  color: #dc2626 !important;
}

.UserDropdown-module__ZfqNKa__adminItemDanger:hover {
  background: #fef2f2 !important;
}

.dark .UserDropdown-module__ZfqNKa__adminItemDanger:hover {
  background: #451a1a !important;
}

.UserDropdown-module__ZfqNKa__adminItemWarning {
  color: #d97706 !important;
}

.UserDropdown-module__ZfqNKa__adminItemWarning:hover {
  background: #fffbeb !important;
}

.dark .UserDropdown-module__ZfqNKa__adminItemWarning:hover {
  background: #451a03 !important;
}

.UserDropdown-module__ZfqNKa__adminItemSuccess {
  color: #059669 !important;
}

.UserDropdown-module__ZfqNKa__adminItemSuccess:hover {
  background: #ecfdf5 !important;
}

.dark .UserDropdown-module__ZfqNKa__adminItemSuccess:hover {
  background: #064e3b !important;
}

.UserDropdown-module__ZfqNKa__adminItemAlert {
  color: #ea580c !important;
}

.UserDropdown-module__ZfqNKa__adminItemAlert:hover {
  background: #fff7ed !important;
}

.dark .UserDropdown-module__ZfqNKa__adminItemAlert:hover {
  background: #431407 !important;
}

.UserDropdown-module__ZfqNKa__modalOverlay {
  z-index: 1000;
  background: #00000080;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 0;
}

.UserDropdown-module__ZfqNKa__modalContent {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  padding: 24px;
  overflow-y: auto;
  box-shadow: 0 20px 60px #0000004d;
}

.dark .UserDropdown-module__ZfqNKa__modalContent {
  background: #1f2937;
  border: 1px solid #374151;
}

.UserDropdown-module__ZfqNKa__modalTitle {
  color: #111827;
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
}

.dark .UserDropdown-module__ZfqNKa__modalTitle {
  color: #f3f4f6;
}

.UserDropdown-module__ZfqNKa__modalUser {
  color: #6b7280;
  margin: 0 0 16px;
  font-size: 14px;
}

.UserDropdown-module__ZfqNKa__presetsContainer {
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  display: flex;
}

.UserDropdown-module__ZfqNKa__presetBtn {
  color: #374151;
  cursor: pointer;
  text-align: start;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  transition: all .15s;
}

.UserDropdown-module__ZfqNKa__presetBtn:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
}

.dark .UserDropdown-module__ZfqNKa__presetBtn {
  color: #e5e7eb;
  background: #374151;
  border-color: #4b5563;
}

.dark .UserDropdown-module__ZfqNKa__presetBtn:hover {
  background: #4b5563;
}

.UserDropdown-module__ZfqNKa__modalTextarea {
  resize: vertical;
  color: #111827;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 16px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
}

.UserDropdown-module__ZfqNKa__modalTextarea:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px #3b82f626;
}

.dark .UserDropdown-module__ZfqNKa__modalTextarea {
  color: #f3f4f6;
  background: #111827;
  border-color: #4b5563;
}

.UserDropdown-module__ZfqNKa__modalActions {
  justify-content: flex-end;
  gap: 10px;
  display: flex;
}

.UserDropdown-module__ZfqNKa__modalCancel {
  color: #374151;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
}

.UserDropdown-module__ZfqNKa__modalCancel:hover {
  background: #f3f4f6;
}

.dark .UserDropdown-module__ZfqNKa__modalCancel {
  color: #e5e7eb;
  background: #374151;
  border-color: #4b5563;
}

.UserDropdown-module__ZfqNKa__modalConfirm {
  color: #fff;
  cursor: pointer;
  background: #3b82f6;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
}

.UserDropdown-module__ZfqNKa__modalConfirm:hover {
  background: #2563eb;
}

.UserDropdown-module__ZfqNKa__modalConfirm:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.UserDropdown-module__ZfqNKa__modalConfirmDanger {
  background: #dc2626;
}

.UserDropdown-module__ZfqNKa__modalConfirmDanger:hover {
  background: #b91c1c;
}

.UserDropdown-module__ZfqNKa__bannedBadge {
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 4px;
  align-items: center;
  gap: 3px;
  margin-inline-start: 4px;
  padding: 1px 5px;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
}

.dark .UserDropdown-module__ZfqNKa__bannedBadge {
  color: #fca5a5;
  background: #450a0a;
  border-color: #7f1d1d;
}

.UserDropdown-module__ZfqNKa__mutedBadge {
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 4px;
  align-items: center;
  gap: 3px;
  margin-inline-start: 4px;
  padding: 1px 5px;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
}

.dark .UserDropdown-module__ZfqNKa__mutedBadge {
  color: #fbbf24;
  background: #451a03;
  border-color: #92400e;
}

/* [project]/apps/web/src/components/ui/ThreadStatusBadge.module.css [app-client] (css) */
.ThreadStatusBadge-module__pZUi7a__badge {
  white-space: nowrap;
  border: 1px solid;
  border-radius: 9999px;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  display: inline-flex;
}

.ThreadStatusBadge-module__pZUi7a__sm {
  padding: 2px 8px;
  font-size: 11px;
}

.ThreadStatusBadge-module__pZUi7a__md {
  padding: 3px 10px;
  font-size: 12px;
}

.ThreadStatusBadge-module__pZUi7a__icon {
  flex-shrink: 0;
}

.ThreadStatusBadge-module__pZUi7a__pending {
  color: #b45309;
  background-color: #fffbeb;
  border-color: #fde68a;
}

.dark .ThreadStatusBadge-module__pZUi7a__pending {
  color: #fbbf24;
  background-color: #78350f4d;
  border-color: #92400e;
}

.ThreadStatusBadge-module__pZUi7a__approved {
  color: #047857;
  background-color: #ecfdf5;
  border-color: #a7f3d0;
}

.dark .ThreadStatusBadge-module__pZUi7a__approved {
  color: #34d399;
  background-color: #064e3b4d;
  border-color: #065f46;
}

.ThreadStatusBadge-module__pZUi7a__rejected {
  color: #b91c1c;
  background-color: #fef2f2;
  border-color: #fecaca;
}

.dark .ThreadStatusBadge-module__pZUi7a__rejected {
  color: #f87171;
  background-color: #7f1d1d4d;
  border-color: #991b1b;
}

.ThreadStatusBadge-module__pZUi7a__violation {
  color: #c2410c;
  background-color: #fff7ed;
  border-color: #fed7aa;
}

.dark .ThreadStatusBadge-module__pZUi7a__violation {
  color: #fb923c;
  background-color: #7c2d124d;
  border-color: #9a3412;
}

/* [project]/apps/web/src/components/common/LoadingSpinner.module.css [app-client] (css) */
.LoadingSpinner-module__WjAEFG__container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.LoadingSpinner-module__WjAEFG__fullScreen {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
}

.LoadingSpinner-module__WjAEFG__inline {
  width: 100%;
  min-height: 300px;
}

.LoadingSpinner-module__WjAEFG__spinner {
  position: relative;
}

.LoadingSpinner-module__WjAEFG__small {
  width: 40px;
  height: 40px;
}

.LoadingSpinner-module__WjAEFG__medium {
  width: 60px;
  height: 60px;
}

.LoadingSpinner-module__WjAEFG__large {
  width: 80px;
  height: 80px;
}

.LoadingSpinner-module__WjAEFG__spinnerTrack {
  background: conic-gradient(#3b82f6 0deg, #8b5cf6 90deg, #ec4899 180deg, #f97316 270deg, #3b82f6 360deg);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  padding: 3px;
  animation: 3s linear infinite LoadingSpinner-module__WjAEFG__spin;
  position: relative;
}

.LoadingSpinner-module__WjAEFG__spinnerBar {
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 3px;
}

.LoadingSpinner-module__WjAEFG__spinnerBar:after {
  content: "";
  background: conic-gradient(#3b82f6 0deg, #8b5cf6 90deg, #ec4899 180deg, #f97316 270deg, #3b82f6 360deg);
  border-radius: 50%;
  width: 70%;
  height: 70%;
  animation: 2s linear infinite reverse LoadingSpinner-module__WjAEFG__spin;
}

.LoadingSpinner-module__WjAEFG__message {
  color: #1f2937;
  text-align: center;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  animation: .6s ease-out .3s both LoadingSpinner-module__WjAEFG__fadeInUp;
}

.LoadingSpinner-module__WjAEFG__subtitle {
  color: #6b7280;
  text-align: center;
  margin: 0;
  font-size: clamp(.875rem, 1.5vw, 1rem);
  animation: .6s ease-out .5s both LoadingSpinner-module__WjAEFG__fadeInUp;
}

@keyframes LoadingSpinner-module__WjAEFG__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes LoadingSpinner-module__WjAEFG__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dark .LoadingSpinner-module__WjAEFG__container {
  color: #e2e8f0;
}

.dark .LoadingSpinner-module__WjAEFG__spinnerTrack {
  background: conic-gradient(#60a5fa 0deg, #a78bfa 90deg, #f472b6 180deg, #fb923c 270deg, #60a5fa 360deg);
}

.dark .LoadingSpinner-module__WjAEFG__spinnerBar {
  background: #111827;
}

.dark .LoadingSpinner-module__WjAEFG__spinnerBar:after {
  background: conic-gradient(#60a5fa 0deg, #a78bfa 90deg, #f472b6 180deg, #fb923c 270deg, #60a5fa 360deg);
}

.dark .LoadingSpinner-module__WjAEFG__message {
  color: #f8fafc;
}

.dark .LoadingSpinner-module__WjAEFG__subtitle {
  color: #94a3b8;
}

[dir="rtl"] .LoadingSpinner-module__WjAEFG__container {
  direction: rtl;
}

[dir="rtl"] .LoadingSpinner-module__WjAEFG__message, [dir="rtl"] .LoadingSpinner-module__WjAEFG__subtitle {
  text-align: right;
}

@media (max-width: 480px) {
  .LoadingSpinner-module__WjAEFG__fullScreen {
    min-width: 100%;
    min-height: 100vh;
  }

  .LoadingSpinner-module__WjAEFG__message {
    font-size: 1rem;
  }

  .LoadingSpinner-module__WjAEFG__subtitle {
    font-size: .875rem;
  }
}

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