/* DeltaWerks Global Styles */
/* Base styles are handled by Tailwind CDN in index.html */

/* Global scrollbar hiding */
html, body {
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Additional utility classes */
.glass-panel {
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(12px);
}

/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(34, 211, 238, 0.05);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.3);
    border-radius: 2px;
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animation for scan effect */
@keyframes scan {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
.animate-scan {
    animation: scan 3s linear infinite;
}

/* Green accent for stock positive values */
.text-accent-green-400 {
    color: #4ade80;
}
.text-accent-green-500 {
    color: #22c55e;
}
.bg-accent-green-500 {
    background-color: #22c55e;
}
