/* Define dynamic company color */
:root {
    --company-color: {{ company.color|default:"#918151" }};
}

/* ===== Scrollbar Width ===== */
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px;  /* Change width here */
    height: 8px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
    background-color: var(--company-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

/* ===== Firefox ===== */
* {
    scrollbar-width: thin; /* auto | thin | none */
    scrollbar-color: var(--company-color) #f1f1f1;
}

