input.dropdown {
    font-size: 18px;
    padding: 5px;
    height: 35px;
    outline: none;
    border-radius: 5px;
    color: black;
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left:0;
    background-color: white;
    border: 1px solid #ccc;
    width:100%;
    box-sizing: border-box;
    border-radius: 0 0 5px 5px;
    max-height: 10rem;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.dropdown-option {
    padding: 5px;
    font-size: 18px;
    color: black;
    cursor: pointer;
    border-bottom: 1px solid lightgray;
}

.dropdown-option.active {
    background-color: lightblue;
}
