﻿.mfp-searchtext-box .mfp-loading-message-animation {
    padding-top: 3px;
}

.mfp-filter-pills-box {
    width: max-content;
    height: 1rem;
    font-size: x-small;
    padding-top: 1px;
}

.mfp-filter-pills-box-selection {
    background-color: whitesmoke;
    color: #303030;
}

.mfp-filter-pills-box-clear, .mfp-filter-pills-box-sort {
    background-color: grey;
    color: white;
}

.mfp-search-container {
    position: relative;
    width: 100%;
}

.mfp-search-panel {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translate(-50%, -10px);
    width: 100%;
    max-width: 1400px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    z-index: 999;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 1s ease-in-out, opacity 1s ease-in-out;
}

.mfp-search-panel.open {
    max-height: 800px;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0); 
}

.mfp-search-backdrop {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.mfp-search-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

/*Filter Pills*/
.mfp-filter-pill,
.mfp-genre-pill {
    height: fit-content;
    border-radius: 10px;
    background-color: whitesmoke;
    padding: 4px 6px 2px 6px;
}

.mfp-filter-pill i {
    position: relative;
    top: 2px;
}

.mfp-search-panel-pill {
    display: inline-flex;
    justify-content: center;
    width: 24px;
    border: 1px solid lightgrey;
    border-radius: 10px;
}

.mfp-search-panel-pill i {
    position: relative;
    top: 2px;
}