/* Custom Font Size - Perkecil Ukuran Font Global */
/* File ini akan memperkecil semua ukuran font di aplikasi */

:root {
  --base-font-size: 14px;
  --small-font-size: 12px;
  --large-font-size: 16px;
}

/* Override AdminLTE default font sizes */
body {
  font-size: var(--base-font-size) !important;
}

/* Heading sizes */
h1, .h1 { font-size: 1.75rem !important; } /* 28px */
h2, .h2 { font-size: 1.5rem !important; }  /* 24px */
h3, .h3 { font-size: 1.25rem !important; } /* 20px */
h4, .h4 { font-size: 1.1rem !important; }  /* 17.6px */
h5, .h5 { font-size: 1rem !important; }     /* 16px */
h6, .h6 { font-size: 0.9rem !important; }  /* 14.4px */

/* Text elements */
p, span, div, td, th, label {
  font-size: var(--base-font-size) !important;
}

/* Form elements */
input, select, textarea, .form-control {
  font-size: var(--base-font-size) !important;
}

/* Buttons */
.btn {
  font-size: var(--base-font-size) !important;
}

/* Cards */
.card-title {
  font-size: 1.1rem !important;
}

.card-body {
  font-size: var(--base-font-size) !important;
}

/* Tables */
.table {
  font-size: var(--base-font-size) !important;
}

.table th {
  font-size: var(--base-font-size) !important;
}

.table td {
  font-size: var(--base-font-size) !important;
}

/* Navigation */
.nav-link {
  font-size: var(--base-font-size) !important;
}

.sidebar .nav-link p {
  font-size: var(--base-font-size) !important;
}

.navbar-brand, .brand-text {
  font-size: 1.1rem !important;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem !important;
}

/* Alerts */
.alert {
  font-size: var(--base-font-size) !important;
}

/* Small text */
small, .small {
  font-size: var(--small-font-size) !important;
}

/* Select2 dropdown */
.select2-container .select2-selection--single .select2-selection__rendered {
  font-size: var(--base-font-size) !important;
}

.select2-results__option {
  font-size: var(--base-font-size) !important;
}

