#plugin_nav {
    display: flex;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-bottom: 10px;
}

#plugin_filters {
    display: flex;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-bottom: 18px;
}

#plugin_opts {
    display: flex;
}

#plugin_opts h3 {
    cursor: pointer;
    user-select: none;
    padding-left: 10px;
    font-weight: normal;
    transition: all 0.1s ease-in-out;
}


#plugin_opts h3:hover {
    opacity: 0.8;
}

#plugin_search {
    display: flex;
    width: 600px;
}

#plugin_search_field {
    outline: none;
    border: none;
    width: calc(100% - 100px);
    font-size: 20px;
    font-family: Poppins;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 7px 20px 7px 20px;
    border-bottom-left-radius:18px;
    border-top-left-radius:18px;
}

#plugin_search button {
    width: 100px;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    border: none;
    background-color: white;
    border-left: solid 1px #00000010;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-bottom-right-radius:18px;
    border-top-right-radius:18px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 40px 10px 15px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 2px solid white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    outline: none;
    position: relative;
}

select:hover {
    border-color: #66aaff;
    box-shadow: 0 6px 15px rgba(0,102,255,0.15);
}

select:focus {
    border-color: #0066ff;
    box-shadow: 0 6px 18px rgba(0,102,255,0.25);
}

select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

select option {
    padding: 10px;
    font-size: 0.9rem;
}

#plugin_opts_selected {
    color: #0066ff;
    text-decoration: underline;
}

#plugin_search {
    border-radius: 18px;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

#plugin_search:hover {
    border-color: #66aaff;
    box-shadow: 0 6px 15px rgba(0,102,255,0.15);
}

#plugin_search:focus-within {
    border: 2px solid #0066ff;
    box-shadow: 0 6px 18px rgba(0,102,255,0.25);
}

#plugin_search button {
    transition: all 0.2s ease-in-out;
}

#plugin_search button:hover {
    background-color: #00000001;
}

#plugin_search button:active {
    background-color: #00000010;
}