/* font size buat boxicons */
.bx {
    font-size: inherit !important;
}

/* header tabel: rata kiri (horizontal), tengah secara vertikal, background hitam, font putih.
   Hanya baris judul kolom yang pertama, bukan baris filter/pencarian (ada pada tabel grid seperti Roles & Users). */
.table thead tr:first-child th {
    vertical-align: middle;
    background-color: #000;
    color: #fff;
}

.table thead tr:first-child th a {
    color: #fff;
}

/* untuk search spinner */
.table-container {
    position: relative;
}

.htmx-indicator {
    display: none;
}

.htmx-request.htmx-indicator {
    display: block;
}

.table-container #search-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.table-container .loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: loading-spin 1s linear infinite;
}

@keyframes loading-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
