/**
 *
 * You can write your CSS code here, DO NOT touch the default JavaScript file
 * because it will make it harder for you to update.
 * 
 */

/*# sourceMappingURL=custom.css.map */

/* Membuat div yang membungkus NPSN dan tombol Cek menjadi flex container */
.input-group-cek {
    display: flex;
    justify-content: space-between; /* Tombol berada di ujung kanan */
    align-items: center; /* Vertikal sejajar */
}

/* Styling untuk tombol Cek */
#cekNpsnButton {
    margin-left: 10px; /* Memberikan jarak antara input dan tombol */
    white-space: nowrap; /* Agar teks tombol tidak terpotong */
}

