/* Material Icons & Material Symbols - OFFLINE VERSION */
/* Menggunakan font file lokal untuk penggunaan internal/offline */

/* Material Icons (Classic) - Font Lokal */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: local("Material Icons"), local("MaterialIcons-Regular"),
    url("./MaterialIcons-Regular.ttf") format("truetype");
}

/* Material Symbols Outlined - Font Lokal */
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: local("Material Symbols Outlined"),
    local("MaterialSymbolsOutlined-Regular"),
    url("./MaterialSymbolsOutlined-Regular.ttf") format("truetype");
}

/* CSS Classes untuk Material Icons (Classic) */
.material-icons {
  font-family: "Material Icons", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}

/* CSS Classes untuk Material Symbols */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined", "Material Icons", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes untuk Ukuran */
.md-18 {
  font-size: 18px;
}
.md-24 {
  font-size: 24px;
}
.md-36 {
  font-size: 36px;
}
.md-48 {
  font-size: 48px;
}

/* Utility Classes untuk Fill (Material Symbols) */
.filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Utility Classes untuk Weight */
.light {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.bold {
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 24;
}

/* Utility Classes untuk Warna */
.md-dark {
  color: rgba(0, 0, 0, 0.54);
}
.md-light {
  color: rgba(255, 255, 255, 1);
}
.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Animasi untuk Fill Transition */
.animated {
  transition: font-variation-settings 0.3s ease;
}

.animated:hover {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}
