.badge-soft {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary-text-emphasis, var(--bs-primary));
  border: 1px solid transparent;
  transition: color .2s, background-color .2s;
}

/* Variante per tema scuro */
[data-bs-theme="dark"] .badge-soft,
body.dark-mode .badge-soft {
  background-color: rgba(var(--bs-primary-rgb), 0.25);
  color: var(--bs-light);
}


/* Global Loader */
.global-loader{
  position:fixed; inset:0;
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(3px);
  display:flex; align-items:center; justify-content:center;
  z-index:9999;
}
.loader-box{
  background:#fff; padding:22px 30px; border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* /Global Loader */

/*Sidebar*/
.side-nav{
  padding-bottom: 100px;
}
/**/

/* Loghi */

.logo-lg img {
    height: auto !important;
    max-width: 100% !important;
    max-height: 60px;
}

.logo .logo-dark {
  display: none;
}

html[data-bs-theme="dark"] .logo .logo-light {
  display: none !important;
}

html[data-bs-theme="dark"] .logo .logo-dark {
  display: inline-block !important;
}