/* Custom Scrollbar Theme - Photoshare Indigo/Purple */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #6366f1 transparent;
    /* Indigo-500 */
}

.dark * {
    scrollbar-color: #6366f1 rgba(15, 23, 42, 0.5);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    /* For horizontal scrollbars */
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #4f46e5, #9333ea);
    /* Indigo-600 to Purple-600 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #4338ca, #7e22ce);
    /* Darker on hover */
}

/* Ensure the track is transparent but the background behind it is dark in dark mode */
html.dark {
    background-color: #020617;
    /* Slate-950 to match body gradient */
}

/* Dark mode adjustments */
.dark ::-webkit-scrollbar-thumb {
    border: 2px solid #020617;
    /* Match background to simulate transparency if needed, or keeping it borderless */
    border: none;
    /* Removing border as requested for "transparent" look */
}

.dark ::-webkit-scrollbar-track {
    background: transparent;
}

/* Specific fix for horizontal scrolling containers if needed */
.overflow-x-auto::-webkit-scrollbar {
    height: 8px;
}