html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Dashboard Stat Cards */
.stat-card {
  border: none;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-icon {
  font-size: 2.5rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.stat-card .stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff !important;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff !important;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card.bg-gradient {
  color: #ffffff !important;
}

.stat-card .text-white {
  color: #ffffff !important;
}

.stat-card .text-white-50 {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Status badges */
.status-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-active {
  background-color: #28a745;
  color: white;
}

.status-completed {
  background-color: #007bff;
  color: white;
}

.status-unknown {
  background-color: #6c757d;
  color: white;
}