/*
Theme Name: WIS
Theme URI: https://wis.com
Author: WIS Team
Author URI: https://wis.com
Description: A custom theme for WIS website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wis
*/

/* Base styles will be added here */

@keyframes indeterminate-progress {
  0% {
    left: -50%;
  }
  100% {
    left: 110%;
  }
}

/*--------------------------------------------------------------
# Custom Scrollbar
--------------------------------------------------------------*/

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: auto;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #fb923c, #3b82f6);
  border-radius: 6px;
  border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ea580c, #2563eb);
}

::-webkit-scrollbar-corner {
  background: #f1f5f9;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #fb923c #f1f5f9;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar for specific elements if needed */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f8fafc;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #fb923c, #3b82f6);
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ea580c, #2563eb);
} 