html {
    font-size: 14px;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* mencegah double scroll */
}

body > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#trx_container {
    flex: 1; /* isi sisa ruang */
    overflow-y: auto;
    padding-bottom: 100px; /* opsional agar tidak mentok di bawah */
}

.icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.bg-orange {
    background-color: #ff6600;
}

.bg-blue {
    background-color: #007bff;
}

.text-small {
    font-size: 0.9rem;
}

.text-tiny {
    font-size: 0.8rem;
    color: gray;
}

.list-group-item:hover {
    background-color: rgb(248, 248, 248);
    cursor: pointer;
}

div.dataTables_filter {
    display: none !important;
}
