body {
    overflow-x: hidden;
}

.sidebar {
    height: 100vh;
    position: fixed;
}

main {
    margin-left: 200px; /* Adjust this value to the width of your sidebar */
}

.pagination .page-link {
    border-radius: 50%;
    margin: 0 5px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.pagination .page-item.disabled .page-link {
    background-color: #e9ecef;
    border-color: #e9ecef;
}

.no-link {
    color: inherit;
    text-decoration: none;
}

.no-link:hover {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 768px) {
    #sidebarMenu {
        position: fixed;
        z-index: 1045;
    }

    main {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .table thead {
        display: none;
    }

    .table,
    .table tbody,
    .table tr,
    .table td {
        display: block;
        width: 100%;
    }

    .table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }
}
