﻿.ad-header {min-height:280px;}
:root {
--scrollbar-width: 18px;
--scrollbar-track-color-light: #f0f0f0;
--scrollbar-thumb-color-light: #888;
--scrollbar-track-color-dark: #333;
--scrollbar-thumb-color-dark: #666;
}

@media (prefers-color-scheme: dark) {
/* Set the track color and thumb color separately */
::-webkit-scrollbar {
width: 14px; /* Adjust the scrollbar width as needed */
}
  
::-webkit-scrollbar-thumb {
background-color: #333; /* Set the thumb color to dark */
}
  
::-webkit-scrollbar-track {
background-color: #666; /* Set the track color to a slightly lighter color */
}
}

/* For Firefox and newer versions of Chrome */
@media (prefers-color-scheme: dark) {
/* Use the scrollbar-color property to set both the thumb and track color */
scrollbar-color: #333 #666; /* thumb color, track color */
}