    .row.pb-3 {
        justify-content: center;
        display: flex;
        align-items: center;
    }
    .card {
    border: 0px solid;
    margin: 10px;
    width: 300px;
    background: none;
    padding: 0px;
    transition: box-shadow .3s ease, transform .2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
    .searchinput {
  border-radius:10px 0px 0px 10px;
    display: block;
    width: 80%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
    .input-group {
    display: flex;
    justify-content: center;
    align-items: center;
}
    .input-group-text {
    padding-right: 10px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    padding: 3.3px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 8px;
}
button#resetButton {
    position: relative;
    transition: all 200ms ease-in-out;
    border-radius: 10px;
    color: #46A2FD;
    background: none;
    border: 1px solid #46A2FD;
}
button#resetButton:hover {
    background-color: #46A2FD;
    color:#fff;
}
#resetButton {
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    #resetButton.show {
        opacity: 1;
    }
    div#pagination {
    justify-content: center;
    align-items: center;
}
button.page-btn {
    border: 1px solid #46A2FD;
    transition: all 200ms ease-in-out;
    margin: 5px;
}
button.page-btn:hover {
    color: #46A2FD;
    background: none;
}