/* Basic fonts and colors */ * { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; } body { background: #2A2B2A; overflow-x: hidden; } /* Basic backgrounds */ .bg-custom-bg { background-color: rgb(37 38 37) !important; } .bg-my{ background-color: rgb(26 26 26); } .bg-header { background-color: rgb(35 35 35) !important; } .minimal-bg { background: linear-gradient(135deg, #1a1a1a 0%, #2A2B2A 100%); position: relative; min-height: 100vh; } .card-minimal.rounded-xl.p-6.cursor-pointer.group.flex-1.create { background-color: #60a5fa08; } .card-minimal.rounded-xl.p-6.cursor-pointer.group.flex-1.join { background-color: #34d39908; } tr.bg-black-table { background-color: #1c1c1c; } /* Text styles */ .text-primary { color: #f1f5f9; } .text-secondary { color: #b6b6b6; } .text-muted { color: #818080; } /* Accent colors */ .accent-orange { color: #fb923c; } .accent-green { color: #34d399; } .accent-red { color: #f87171; } .accent-yellow { color: #fbbf24; } .accent-purple { color: #a78bfa; } .accent-blue { color: #60a5fa; } .accent-gray { color: #9ca3af; } .accent-cyan { color: #22d3ee; } /* Custom scroll */ .custom-scrollbar::-webkit-scrollbar { width: 6px; } .custom-scrollbar::-webkit-scrollbar-track { background: rgba(42, 43, 42, 0.3); border-radius: 3px; } .custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(75, 85, 99, 0.5); border-radius: 3px; } .custom-scrollbar::-webkit-scrollbar-thumb:hover { background: rgba(75, 85, 99, 0.7); } /* Smooth scrolling */ .scroll-smooth { scroll-behavior: smooth; } /* Improved scrolling for messages */ .messages-container { scroll-behavior: smooth; scroll-padding-bottom: 20px; } /* Enhanced autoscroll for chat */ .chat-messages-area { scroll-behavior: smooth; scroll-padding-bottom: 20px; } .chat-messages-area > div:first-child { scroll-behavior: smooth; scroll-padding-bottom: 20px; } /* Smooth scrolling for all message containers */ [class*="chat"] { scroll-behavior: smooth; } /* Media Queries (Mobile/Tablet) */ @media (max-width: 640px) { .header-minimal { padding: 0 8px; } .icon-container { min-width: 32px; min-height: 32px; } .verification-code { font-size: 0.875rem; padding: 6px 8px; } .header-minimal .max-w-7xl { padding-left: 8px; padding-right: 8px; } .header-minimal button { min-width: 32px; min-height: 32px; } } @media (min-width: 641px) and (max-width: 1024px) { .header-minimal .max-w-7xl { padding-left: 16px; padding-right: 16px; } } .card { position: relative; border-radius: 12px; overflow: hidden; transition: transform 0.3s ease; } .card::before { content: ""; position: absolute; inset: 0; border-radius: 12px; padding: 2px; background: radial-gradient( circle at var(--x, 50%) var(--y, 50%), var(--color), transparent 80% ); opacity: 0; transition: opacity 0.4s; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; } .card.active-glow::before { opacity: 1; } .card::after { content: ""; position: absolute; inset: 3px; border-radius: 10px; z-index: 1; }