@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
:root {
    --primary: #4285f4;
    --white: #fff;
}

.wrapper {
    margin-top: 0px;
    width: 560px;
    position: relative;
    border: 1px solid #999; /* Borda cinza */
    border-radius: 10px; /* Bordas arredondadas para um visual mais moderno */
    background-color: #fff; /* Fundo branco para contraste */
    padding:0px; /* Espaço interno */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra leve */
    
}

.select-btn {
    background-color: var(--white);
    border-radius: 7px;
    cursor: pointer;
    height: 65px;
    font-size: 22px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.select-btn > i {
    font-size: 31px;
    transition: transform 0.3s linear;
}
.wrapper.active > .select-btn > i {
    transform: rotate(-180deg);
}
.wrapper.active .content {
    display: block;
}
.content {
    display: none;
    position: absolute;    
    background-color: var(--white);
    border-radius: 7px;
    border: 1px solid #999; /* Borda cinza */
    margin-top: 15px;
    padding: 20px;
    width: 100%;
    z-index: 9999;
}
.content > .search {
    position: relative;
}
.search > i {
    position: absolute;
    left: 15px;
    line-height: 53px;
    color: #999;
    font-size: 22px;
}
.search > input {
    height: 53px;
    width: 100%;
    font-size: 17px;
    padding: 0 15px 0 43px;
    outline: none;
    border: 1px solid #b3b3b3;
    border-radius: 5px;
}
.content > .options {
    margin-top: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 7px;
}
.content > .options::-webkit-scrollbar {
    width: 7px;
}
.content > .options::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 25px;
}
.content > .options::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 25px;
}
.options > li {
    height: 50px;
    padding: 0 13px;
    border-radius: 5px;
    font-size: 21px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.options > li:hover, li.selected {
    background-color: #f2f2f2;
}