#style-1,
#style-2,
#style-3,
#style-4 {
    max-height: 350px;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
}

.force-overflow {
    min-height: auto !important;
}

#style-1::-webkit-scrollbar,
#style-2::-webkit-scrollbar,
#style-3::-webkit-scrollbar,
#style-4::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}

#style-1::-webkit-scrollbar-thumb,
#style-2::-webkit-scrollbar-thumb,
#style-3::-webkit-scrollbar-thumb,
#style-4::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 4px;
}

#style-1::-webkit-scrollbar-track,
#style-2::-webkit-scrollbar-track,
#style-3::-webkit-scrollbar-track,
#style-4::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-div-bg {
    background-color: #eee;
}

.search-input-box {
    width: 100%;
    padding: 12px 20px 12px 44px;
    border-radius: 32px;
    border: 1px solid #0b3d51;
    background: #eee;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(60, 60, 120, 0.05);
    outline: none;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
}

.search-input-box:focus {
    box-shadow: 0 4px 16px rgba(60, 60, 120, 0.10);
    background-color: #fff;
    outline: none;
    /* optionally remove default outline */
}

.pagination .page-item .page-link {
    width: 55px;
    /* fixed width */
    /* height: 40px; */
    /* consistent height */
    text-align: center;
    font-size: 14px;

    /* center number */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    /* remove default padding */
}

.pagination .page-item.active .page-link {
    background-color: #0b3d51;
    border-color: #0b3d51;
    color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
    .pagination .page-item .page-link {
        min-width: 40px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .pagination .page-item .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}