.nemy-plugin-container {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;

    #result-pane {
        max-width: 1280px;
        margin: 0 auto;

        .search-box {
            width: auto;
        }
    }

    table {
        th, td {
            font-size: 12px !important;
        }

        tr::before {
            background-color: transparent;
        }
    }

    .pagenation-holder {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        padding: 20px 0;
        font-family: sans-serif;

        a, span.page-numbers {
            display: inline-block;
            padding: 12px;
            background-color: transparent;
            border: 1px solid #242424;
            border-radius: 4px;
            color: #242424;
            font-size: 14px;
            line-height: 14px;
            text-decoration: underline !important;
            text-decoration-color: #1a237e !important;

            &.dots, &.next {
                text-decoration: none !important;
            }

            transition: background-color 0.2s, color 0.2s;

            &.current {
                background-color: #666666;
                color: #fff;
                font-weight: bold;
            }

            &.prev, &.next {
                border: none;
                font-weight: bold;
                font-size: 30px;
                padding-top: 6px;
                padding-bottom: 6px;
                line-height: 20px;
            }

        }

        a:hover {
            font-weight: bold;
        }


        .dots {
            border: none !important;
            background: none !important;
        }

        .first, .last {
            font-weight: bold;
        }
    }
}

.dropdown-content li > a, .dropdown-content li > span {
    color: black;
}

