.scrollable-content {
    height: 300px;
    overflow-y: scroll;
    padding: 20px;
    background: rgba(30, 30, 50, 0.7);
    border-radius: 10px;
    margin: 20px 0;
}

/* Works on Firefox */
.scrollable-content {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(30, 30, 50, 0.5);
}

/* Works on Chrome, Edge, and Safari */
.scrollable-content::-webkit-scrollbar {
    width: 12px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: rgba(30, 30, 50, 0.5);
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 20px;
    border: 3px solid rgba(30, 30, 50, 0.5);
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary);
}

.content-block {
    height: 200px;
    background: rgba(65, 216, 191, 0.1);
    margin: 20px 0;
    border-radius: 5px;
    border: 1px dashed var(--accent);
}