/* Custom styles extracted from novo-layout */

.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

input[type="range"] {
    accent-color: #f39c12;
}

.asset-card-active {
    border-color: #f39c12 !important;
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.1);
}

/* Custom scrollbars */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f39c12;
}

/* Fixes for dark mode mentioned in tailwind config but using light theme as base in novo-layout */
.dark ::-webkit-scrollbar-track {
    background: #1a1a1f;
}
.dark ::-webkit-scrollbar-thumb {
    background: #33333b;
}
.dark ::-webkit-scrollbar-thumb:hover {
    background: #f39c12;
}
