/* Size Fixes for EGS-ADMIN - Counter Numbers and Descriptions */

/* Fix oversized counter numbers in dashboard cards */
.card-sm .font-weight-medium,
.card .fs-3,
.fs-3 {
  font-size: 1.5rem !important; /* Reduced from larger sizes */
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

/* Fix oversized page descriptions and muted text */
.text-muted,
.card-body .text-muted,
.page-subtitle,
.page-description {
  font-size: 0.8125rem !important; /* 13px - smaller than default */
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

/* Fix card titles that are too big */
.card-title {
  font-size: 1rem !important; /* Reduced from 1.125rem */
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

/* Fix page headers that are too big */
.page-header h1,
.page-title,
h1.page-title {
  font-size: 1.5rem !important; /* Reduced from larger sizes */
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

/* Fix dashboard welcome message */
.dashboard-header h1,
.dashboard-title {
  font-size: 1.75rem !important;
  font-weight: 600 !important;
}

/* Fix card footer links */
.card-footer a {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
}

/* Fix button text sizes */
.btn {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
}

.btn-sm {
  font-size: 0.8125rem !important;
}

.btn-lg {
  font-size: 1rem !important;
}

/* Fix table text sizes */
.table td {
  font-size: 0.875rem !important;
}

.table th {
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
}

/* Fix form elements */
.form-control,
.form-select {
  font-size: 0.875rem !important;
}

.form-label {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
}

/* Fix navigation elements */
.nav-link {
  font-size: 0.875rem !important;
}

.sidebar .nav-link {
  font-size: 0.875rem !important;
}

/* Fix breadcrumb */
.breadcrumb-item {
  font-size: 0.875rem !important;
}

/* Fix alert text */
.alert {
  font-size: 0.875rem !important;
}

/* Fix modal text */
.modal-title {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
}

.modal-body {
  font-size: 0.875rem !important;
}

/* Fix dropdown text */
.dropdown-item {
  font-size: 0.875rem !important;
}

/* Fix badge sizes */
.badge {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

/* Fix small text elements */
.small,
small {
  font-size: 0.8125rem !important;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
  .card-sm .font-weight-medium,
  .card .fs-3,
  .fs-3 {
    font-size: 1.25rem !important;
  }
  
  .page-header h1,
  .page-title {
    font-size: 1.25rem !important;
  }
  
  .card-title {
    font-size: 0.9375rem !important;
  }
  
  .text-muted {
    font-size: 0.8125rem !important;
  }
}

/* Specific fixes for dashboard statistics */
.dashboard-stats .card-sm .font-weight-medium {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
}

.dashboard-stats .text-muted {
  font-size: 0.8125rem !important;
  font-weight: 400 !important;
}

/* Fix for any remaining large text */
.fs-1 { font-size: 2rem !important; }
.fs-2 { font-size: 1.75rem !important; }
.fs-4 { font-size: 1.25rem !important; }
.fs-5 { font-size: 1.125rem !important; }
.fs-6 { font-size: 1rem !important; }