/* Digital Invoice Integrator - Site Overrides */

/* Import Google font locally compatible with Sneat */
body {
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Card hover effect */
.card {
  transition: box-shadow 0.2s ease-in-out;
}
.card:hover {
  box-shadow: 0 0.25rem 1.125rem rgba(75, 70, 92, 0.1);
}

/* Status badges */
.badge.bg-label-info { background-color: rgba(3, 195, 236, 0.16) !important; color: #03c3ec !important; }
.badge.bg-label-success { background-color: rgba(113, 221, 55, 0.16) !important; color: #71dd37 !important; }
.badge.bg-label-danger { background-color: rgba(255, 62, 29, 0.16) !important; color: #ff3e1d !important; }
.badge.bg-label-warning { background-color: rgba(255, 171, 0, 0.16) !important; color: #ffab00 !important; }
.badge.bg-label-primary { background-color: rgba(105, 108, 255, 0.16) !important; color: #696cff !important; }
.badge.bg-label-secondary { background-color: rgba(133, 146, 163, 0.16) !important; color: #8592a3 !important; }

/* Avatar helper */
.avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 0.375rem;
  font-size: 1.25rem;
}

/* Table action buttons spacing */
.table td form.d-inline { margin-left: 0.25rem; }

/* Auth page centering */
.authentication-wrapper {
  display: flex;
  flex-basis: 100%;
  min-height: 100vh;
  width: 100%;
}
.authentication-wrapper.authentication-basic {
  align-items: center;
  justify-content: center;
}
.authentication-inner {
  max-width: 420px;
  width: 100%;
}

/* Auth page logo - responsive & transparent background */
.authentication-wrapper .app-brand {
  background-color: #fff;
}
.auth-logo {
  width: 400px;
  height: 100px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.1);
}
@media (max-width: 576px) {
  .auth-logo {
    width: 250px;
    height: 65px;
  }
}
@media (max-width: 400px) {
  .auth-logo {
    width: 200px;
    height: 52px;
  }
}