/* Global scrollbar styling – same as userprofile feed (thumb: rgba(80,80,80,0.9), track: rgba(40,40,40,0.4)) */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(80, 80, 80, 0.9) rgba(40, 40, 40, 0.4);
}
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-track {
    background: rgba(40, 40, 40, 0.4);
}
*::-webkit-scrollbar-thumb {
    background: rgba(80, 80, 80, 0.9);
    border-radius: 4px;
}
*::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 100, 100, 0.95);
}
