.content_input ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 40px;
    z-index: 2;
    background-color: #fff;
    width: 99.9%;
    box-shadow: 0px 0px 5px #000;
    max-height: 300px;
    overflow-y: scroll;
    border-radius:10px;
    padding: 0px;
}

.content_input ul .group {
    display: flex;
    flex-direction: column;
}

.content_input ul .group p {
    height: 40px;
    width: 100%;
    background-color: #ebeaea;   
    margin: 0px; 
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-weight: bolder;
}

.content_input {
    position: relative;
}

.content_input ul .group {
    display: none;
}

.content_input ul li,
.content_input ul a {
    padding: 10px 0px 10px 20px;
    display: none;
}

.content_input ul li:hover,
.content_input ul a:hover {
    cursor: pointer;
    background-color: var(--orange);
    color: #eee;
}