.mc-search-results-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 450px; /* Adjust as needed */
    overflow-y: auto;
    background-color: #fff;

    z-index: 9999;
}

.mc-search-results-container ul.mc-search-results {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mc-search-result-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.mc-search-result-item a {
    text-decoration: none;
    color: #232C64; /* Match your theme */
}

.mc-search-result-item:hover {
    background-color: #f5f5f5;
}

.mc-no-results,
.mc-loading,
.mc-error {
    padding: 10px;
}

.mc_search {
    position: relative;
}

@media (max-width: 768px) {
    .mc-search-results-container {
        max-height: 300px; /* Adjust for smaller screens */
        width:300px;
    }
}
