/* Custom global adjustments */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #003300;
}

::-webkit-scrollbar-thumb:hover {
  background: #39ff14;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(100%) saturate(10000%) hue-rotate(90deg) brightness(1.5);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #000;
    scrollbar-gutter: stable;
}

::selection {
    background: var(--primary);
    color: black;
}

html {
    scroll-behavior: smooth;
}

/* Custom transitions for glass effects */
.glass-panel {
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* Add a custom glow to the main logo on hover via CSS if needed, but Framer Motion handles it mostly */
@keyframes neon-pulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.4)); }
    50% { filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.8)); }
}

.animate-neon {
    animation: neon-pulse 2s infinite ease-in-out;
}