/* Minimal custom styles beyond Tailwind */

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
.dark ::-webkit-scrollbar-thumb {
    background: #475569;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
.dark ::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Dialog backdrop */
dialog::backdrop {
    background: rgba(0,0,0,0.4);
}

/* Prevent dialog border from being overridden */
dialog {
    border: none;
    outline: none;
}

/* Selection color */
::selection {
    background: #c7d2fe;
}
.dark ::selection {
    background: #4338ca;
}
