/* Tailwind Handles Core Theming Now */
/* Only custom components and scrollbars remain here */

* {
  -webkit-tap-highlight-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1; /* slate-300 */
  border-radius: 10px;
}
.dark ::-webkit-scrollbar-thumb {
  background: #334155; /* slate-700 */
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; /* slate-400 */
}
.dark ::-webkit-scrollbar-thumb:hover {
  background: #475569; /* slate-600 */
}

.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

/* Base Styles */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.animate-\\[marquee_15s_linear_infinite\\] {
  animation: marquee 15s linear infinite;
}
