.table>:not(caption)>*>* {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table-bordered h3 {
    font-size: 23px;
}

#pagination {
    display: flex;
    align-items: end;
    justify-content: end;
    margin-top: 20px;
}
h3
#preBtn,
#nextBtn,
button,
#currentpage {
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    width: 40px; /* Set a fixed width to ensure consistent button sizes */
}

#preBtn,
#nextBtn,
button {
    background-color: #007bff;
    color: black;
}

#currentpage {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}

button:hover,
#currentpage:hover {
    /* background-color: #0056b3; */
    color: #fff;
}

/* Media query for smaller screens (adjust the max-width as needed) */
@media (max-width: 600px) {
    #preBtn,
    #nextBtn,
    button,
    #currentpage {
        width: 30px;
        font-size: 12px;
    }
}

.input-group {
    padding: 19px;
    display: flex;
    align-items: end;
    justify-content: end;
}
.input-group select {
    padding: 10px;
    padding-right: 30px; /* Space for the icon */
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 200px;
}
.input-group input {
    padding: 8px;
    border-radius: 5px;
    margin-left: 2rem;
}


.search-container {
    position: relative;
    display: inline-block;
}

.search-input {
    padding: 10px;
    padding-right: 30px; /* Space for the icon */
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 200px;
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #0056b3;
    cursor: pointer;
}

