/* ====================================
   Custom Scrollbar Styles
   ==================================== */

.result-wrapper::-webkit-scrollbar,
.two-col textarea::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: var(--bg-primary);
    border-radius: 10px;
    box-shadow: var(--shadow-inset);
}

.result-wrapper::-webkit-scrollbar-thumb,
.two-col textarea::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 2px solid var(--bg-primary);
    box-shadow: var(--shadow-raised);
}

.result-wrapper::-webkit-scrollbar-thumb:hover,
.two-col textarea::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}