/* Upravený scrollbar */
aside::-webkit-scrollbar {
    width: 8px;
}

aside::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgb(26, 81, 120) 0%, rgb(107, 121, 158) 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

aside::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Pre Firefox */
aside {
    scrollbar-width: thin;
    scrollbar-color: rgb(26, 81, 120) rgba(107, 121, 158, 0.1);
}

/* Styly pro scrollbar */
.scrollbar::-webkit-scrollbar {
    height: 8px;
}

.scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
