/* Badge */
.badge.bg-secondary {
  font-size: 0.85rem;
  padding: 0.35em 0.6em;
}

/* Table alignment */
.table td,
.table th {
  vertical-align: middle;
}

/* Card Header Styling */
.card h5 {
  font-weight: 600;
}

/* Summary Card Style */
.modern-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e4e4e7;
  padding: 1.25rem 1.5rem;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.modern-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.modern-card .metric-label {
  font-size: 0.875rem;
  color: #6b7280; /* Gray-500 */
  margin-bottom: 0.25rem;
}

.modern-card .metric-value {
  font-size: 1.75rem;
  font-weight: 600;
  color: #111827; /* Gray-900 */
}

.modern-card i {
  color: #4f46e5; /* Indigo-600 */
  margin-right: 0.4rem;
}
