a[data-nav][data-loading="true"] {
    opacity: 0.6;
    cursor: wait;
}

.img-avatar {
    display: inline-block !important;
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.img-avatar.img-avatar16 {
    width: 16px;
    height: 16px;
}

.img-avatar.img-avatar20 {
    width: 20px;
    height: 20px;
}

.img-avatar.img-avatar32 {
    width: 32px;
    height: 32px;
}

.img-avatar.img-avatar48 {
    width: 48px;
    height: 48px;
}

.img-avatar.img-avatar96 {
    width: 96px;
    height: 96px;
}

.img-avatar.img-avatar128 {
    width: 128px;
    height: 128px;
}

.img-avatar-thumb {
    margin: 0.25rem;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
}

.img-avatar.img-avatar-rounded {
    border-radius: 0.25rem;
}

.img-thumb {
    padding: 0.375rem;
    background-color: #fff;
    border-radius: 0.25rem;
}

.object-fit-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important
}

.user-info-card .user-profile i {
    position: absolute;
    top: 12px;
    right: 7px;
    font-size: 16px;
    color: var(--white);
    z-index: 1;
}

[data-bs-toggle="dropdown"] {
    cursor: pointer !important;
}

.cursor-pointer {
    cursor: pointer !important;
}


.fs-base {
    font-size: 1rem !important
}

.fs-xs {
    font-size: .75rem !important
}

.fs-sm {
    font-size: .875rem !important
}

.fs-lg {
    font-size: 1.25rem !important
}


.fw-light {
    font-weight: 300 !important
}

.fw-lighter {
    font-weight: lighter !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-medium {
    font-weight: 500 !important
}

.fw-semibold {
    font-weight: 600 !important
}

.fw-bold {
    font-weight: 700 !important
}

.fw-bolder {
    font-weight: bolder !important
}

.fw-extrabold {
    font-weight: 800 !important
}

.fw-black {
    font-weight: 900 !important
}

.card-hover:hover {
    background-color: var(--primary-100) !important;
}


.radio-pill-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.radio-pill-group.block {
    flex-direction: column;
    align-items: flex-start;
}

.radio-pill-label {
    display: flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    color: #333;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.radio-pill:checked+.radio-pill-label {
    color: var(--primary-500);
    border-color: var(--primary-500);
}

.radio-pill:checked+.radio-pill-label::before {
    content: "\2713";
    display: inline-block;
    margin-right: 8px;
    font-weight: bold;
    font-size: 12px;
}

.ts-wrapper.multi .ts-control>div {
    background: var(--primary-100) !important;
    border-radius: 5px !important;
}

[data-theme=dark] .ts-wrapper.multi .ts-control>div {
    color: var(--white);
}

/* Responsive Table */
@media (max-width: 768px) {
    table.responsive thead {
        display: none;
    }

    table.responsive tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e0e0e0;
        border-radius: 0.5rem;
        padding: 0.75rem;
        background-color: #fff;
    }

    table.responsive tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.3rem 0;
    }

    table.responsive tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
        margin-right: 10px;
    }

    table.responsive tbody td:last-child {
        border-bottom: 0;
    }
}