/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Override font-family untuk seluruh aplikasi */
html,
body {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

/* Override font untuk heading */
h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

/* Override font untuk elemen form */
input, textarea, select, button, .btn {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

/* Override font untuk tabel */
table, th, td {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

/* Override font untuk dropdown dan modal */
.dropdown-menu, .modal, .popover, .tooltip {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

/*Write your custom css in this file.*/