p.container {
    text-align: center;
}

.button-justify {
    display: flex;
    justify-content: space-between;
}

a {
    text-decoration: none;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 50px;
    height: 100%;
    width: 190px;
    padding-top: 20px;
    background-color: #1a4685;
    transition: width 0.3s;
    z-index: 1000;
}

.navbar {
    z-index: 1001;
    background-color: #1a4685;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    color: white;
    width: 100%;
    box-sizing: border-box;
}

.sidebar .description {
    font-size: 14px;
    flex: 1;
    /* isi semua ruang kosong */
    text-align: left;
    white-space: normal;
    /* biar teks panjang bisa turun baris */
}

.sidebar .nav-link:hover {
    background-color: #FFF;
    color: #1a4685;
}

.nav-link.disabled {
    pointer-events: none;
}

.dropdown-item.disabled {
    pointer-events: none;
}

.btn-group {
    width: 100%;
}

.btn-group.dropend:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
    /* Optional: atur agar tidak geser ke bawah */
    margin-left: 0.1rem;
    /* Optional: biar geser sedikit ke kanan */
}

.btn-group.dropend .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
}

.main-content {
    height: 100%;
    margin-top: 100px;
    margin-right: 20px;
    margin-left: 200px;
    padding: 20px;
    overflow-y: auto;
    position: relative;
}

.required-field::after {
    content: " *";
    color: red;
}

table {
    font-size: 14px;
}

.dtfc-fixed-left,
.dtfc-fixed-right {
    background-color: white !important;
    /* mengatur warna latar belakang */
    z-index: 1040 !important;
    /* untuk kolom tetap di atas elemen lainnya */
}

p {
    font-size: 20px;
    text-align: justify;
}

form.row {
    border-style: solid;
    border-color: darkgray;
    border-width: 0.5px;
}

@media (max-width: 480px) {
    .sidebar {
        width: 60px;
    }

    .nav {
        margin-top: 30px;
    }

    .sidebar .description {
        display: none;
    }

    .sidebar .nav-link {
        justify-content: center;
    }

    .main-content {
        margin-left: 60px;
        overflow-y: auto;
    }

    p {
        text-align: justify;
        font-size: 10px;
    }

    table {
        font-size: 9px;
    }

}