/* 
Theme Name: CooperLets Child
Theme URI: 
Description:
Author: Rebrand
Author URI: 
Template: cooperlets
Version: 2.0.0
Text Domain: cooperlets-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: 
*/

/* Add your custom styles here */

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: auto; /* Vertical scrollbar width */
}

::-webkit-scrollbar-track {
  background: #f5f5f5; /* Light gray track */
}

::-webkit-scrollbar-thumb {
  background: #522d6d; /* Cooper purple color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff9e18; /* Orange shade on hover */
}

/* Firefox support */
html {
  scrollbar-width: auto;
  scrollbar-color: #522d6d #f1f1f1;
}

