/* Theme primary color like IFixFast accent but using your #FF8326 */
:root {
  --primary-color: #FF8326;
  --primary-hover: #e56e10;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  border: none;
}

.btn-primary-custom:hover, .btn-primary-custom:active {
  background-color: var(--primary-hover) !important;
  color: white !important;
}

.stat-card {
  background: white;
  border-radius: 8px;
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.2rem;
  }
  .stat-card h3 {
    font-size: 1.5rem;
  }
}


