.cas-search-wrapper {
    position: relative;
    max-width: 100%;
}

#cas-search-input {
    width: 100%;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 0px;
    box-shadow: none;
    font-family: "Lekton", monospace;
    font-weight:400;
    height: 55px;
    
}

#cas-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 999;
    display: none;
    height: 300px;
    overflow: scroll;
}

.cas-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cas-result-item {
    border-bottom: 1px solid #eee;
}

.cas-result-item a {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.cas-result-item a:hover {
    background: #f5f5f5;
}

.cas-result-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 10px; 
}

li.cas-result-item span {
    font-family: "Lekton", monospace;
    font-size: 16px;
}

.cas-no-results {
    padding: 10px;
    color: #999;
}

li.cas-result-item a:hover {
        color: black;
}