/* ================================
   GLOBAL SEARCH DROPDOWN
   ================================ */

.search-dropdown-container {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    background-color: #ffffff;
    z-index: 9999;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-height: 500px;
    overflow-y: auto;
}

.search-dropdown-container.active {
    display: block;
}


/* ================================
   SEARCH CONTENT
   ================================ */

.search-images {
    border-radius: 8px;
}

.close-search-results {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.search-dd-title-block {
    margin-top: 15px;
    margin-bottom: 10px;
}

.search-dd-row-margin {
    margin-bottom: 15px;
}

.search-dd-title {
    text-decoration: none;
}


/* ================================
   RESPONSIVE (MOBILE)
   ================================ */

@media only screen and (max-width: 768px) {
    .search-dropdown-container {
        display: none;
    }
}
