.custom-table {
    /* margin: 50px auto; */
    padding: 10px 0;
    border: 1px solid var(--light-color-200);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    background-color: #fff;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.table-header > h4 {
    color: var(--text-color-900);
    font-size: var(--font-size-heading-sm);
    font-weight: 600;
    line-height: 1.75rem;
}

.table-header .actions {
    display: flex;
    gap: 1rem;
    font-size: var(--font-size-md);

    & .input-search {
       width: 314px;
    }

    & button {
        width: max-content;

        & i {
            margin-right: 0.313rem;
        }
    }
}

.table-header > button > a {
    color: var(--secondary-color);
}

.custom-table tr > td, .custom-table tr > th {
    color: var(--text-color-600);
    font-size: 0.875rem;
}
.custom-table td:first-child, .custom-table th:first-child {
    padding-left: 1.5rem;
}

.custom-table thead tr {
    font-size: var(--font-size-md);
    
    & th {
        background-color: var(--light-color-50);
        color: var(--text-color-600);
    }
}


.data-not-found-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    & .featured-icon {
        font-size: var(--font-size-heading-sm);
        width: 4rem;
        height: 4rem;
    }

    & h6 {
        margin-top: 0.75rem;
        font-size: var(--font-size-heading-sm);
        font-weight: 600;
    }
}

.actions {
    cursor: pointer;
    
    & > .btn-edit-item{
        margin-right: 8px;
    }

    & > .btn-edit-item:hover{
        color: var(--primary-color);
    }

    & > .btn-delete:hover  {
        color: var(--danger-color-500);
    }
}