/* Custom scrollbar color for Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: #06B6D4;
    /* Scrollbar thumb color */
    border-radius: 6px;
    /* Rounded edges for the scrollbar */
}

::-webkit-scrollbar-track {
    background: #090f1b;
    /* Background color of the scrollbar track */
    border-radius: 6px;
    /* Rounded edges for the track */
}

/* Firefox scrollbar customization */
html {
    scrollbar-color: #06B6D4 #090f1b;
    /* Thumb color and track color for Firefox */
    scrollbar-width: thin;
    /* Set the width of the scrollbar */
}