.sidebar button {
    border-radius: 14px;
    background: linear-gradient(145deg, #103999, #0e3081);
    box-shadow: 5px 5px 11px #092056,
        -5px -5px 11px #154ac8;
}

.glass {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.1px);
    -webkit-backdrop-filter: blur(8.1px);
}


.neumo button {
    border-radius: 14px;
    background: linear-gradient(145deg, #103999, #0e3081);
    box-shadow: 5px 5px 11px #061539,
        -5px -5px 11px #1855e5;
}

.card {
    border-radius: 12px;
    color: #06173d;
    background: #ebecec;
    box-shadow: inset 5px 5px 0px #06173d,
        inset -5px -5px 0px #1a5bf5;
}

.notification {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.8px);
    -webkit-backdrop-filter: blur(16.8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Global custom scrollbar styles */
* {
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #646464 #f0f0f0;
    /* Firefox: thumb and track colors */
}

/* Webkit Browsers (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    /* Optional for horizontal scrollbar */
}

*::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    /* Light gray background */
    border-radius: 2px;
}

*::-webkit-scrollbar-thumb {
    background-color: #646464;
    /* Grey thumb */
    border-radius: 2px;
    border: 1px solid #ccc;
    /* Optional: subtle border around thumb */
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Darker thumb color on hover */
}