/* Googlefont Poppins CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Poppins", sans-serif; */
  font-family: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  text-decoration: none;
}

/* Define color variables */
:root {
  --border-raduis: 10px;
  --white-color: #fff;
  --primary-color: #007BFF; /* Blue */
  --primary-hover-color: #0056b3; /* Darker Blue */
  /*--success-color: #28A745; /* Green */
  --success-color: #0add3c; /* Green */
  --warning-color: #e69e2b; /* Orange */
  --danger-color: #f44336; /* Red */
  --box-shadow-color: rgba(0, 0, 0, 0.1); /* Box Shadow */
  --outline-color: #efeef1; /* Outline Color */
  --text-color: #000; /* Black */
  --border-color:#f1f1f1f1;
  --background-color:#f5f5f5e8;
  
  /* Typography variables */
  --font-family-primary: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 13px;
  --font-size-base: 14px;
  --font-size-md: 15px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

/* Global font enforcement */
html, body {
  font-family: var(--font-family-primary) !important;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.modal-header
{
  background-color: var(--primary-color)!important;
  color: var(--white-color)!important;
}
.modal-header .btn-close
{
  color: var(--white-color)!important;
}
/* Force font family on all elements */
*, *::before, *::after {
  font-family: var(--font-family-primary) !important;
}

/* Typography utility classes */
.text-xs { font-size: var(--font-size-xs) !important; }
.text-sm { font-size: var(--font-size-sm) !important; }
.text-base { font-size: var(--font-size-base) !important; }
.text-md { font-size: var(--font-size-md) !important; }
.text-lg { font-size: var(--font-size-lg) !important; }
.text-xl { font-size: var(--font-size-xl) !important; }
.text-2xl { font-size: var(--font-size-2xl) !important; }
.text-3xl { font-size: var(--font-size-3xl) !important; }

.font-light { font-weight: var(--font-weight-light) !important; }
.font-normal { font-weight: var(--font-weight-normal) !important; }
.font-medium { font-weight: var(--font-weight-medium) !important; }
.font-semibold { font-weight: var(--font-weight-semibold) !important; }
.font-bold { font-weight: var(--font-weight-bold) !important; }
.font-extrabold { font-weight: var(--font-weight-extrabold) !important; }

.leading-tight { line-height: var(--line-height-tight) !important; }
.leading-normal { line-height: var(--line-height-normal) !important; }
.leading-relaxed { line-height: var(--line-height-relaxed) !important; }

/* General Text */
body {
  color: var(--text-color);
  background-color: var(--white-color)!important;
  font-family: var(--font-family-primary)!important;
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  overflow-x: hidden;
}

a
{
  text-decoration: none!important;
}

/* ... existing code ... */

/* Personnalisation des barres de défilement */
::-webkit-scrollbar {
  width: 3px; /* Largeur de la barre de défilement */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Couleur de l'arrière-plan de la barre de défilement */
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color); /* Couleur bleue */
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover-color); /* Bleu plus foncé au survol */
}

/* Scrollbar horizontal spécifique aux tableaux */
table::-webkit-scrollbar {
  height: 4px; /* Scroll horizontal très fin */
  background: #f1f1f1;
}

table::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
}
.text-alert
{
  text-align:center;
  color: var(--warning-color);
  width: 80%;
}

.search-filter.hidden
{
  transition: display 2s ease-in-out;
  display: none;
}
td
{
  text-transform: capitalize!important;
}
/* ... existing code ... */
