.dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
}

.dropdown .selected {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding-left: 1.5rem;
    border-radius: 10rem;
    background-color: var(--white-bg-color);
    cursor: pointer;
    box-shadow: 2px 2px 3px var(--box-shadow-color);
}

.dropdown .options {
    z-index: 2;
    position: absolute;
    top: 110%;
    min-width: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem;
    background-color: var(--white-bg-color);
    border-radius: 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
    box-shadow: 2px 2px 3px var(--box-shadow-color);
}

.dropdown .options li:nth-child(1) {
    margin-top: 1rem;
}

.dropdown .options li:last-child {
    margin-bottom: 1rem;
}

.dropdown .options li {
    cursor: pointer;
    list-style: none;
}

.dropdown .options li:hover {
    color: var(--blue-limitless-color);
}

.dropdown .options.show {
    max-height: 1000px;
}

.dropdown .material-symbols-outlined {
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown .rotate {
    transform: rotate(-180deg);
}

.dropdown .press {
    transform: scale(0.95);
    box-shadow: 3px 3px 5px var(--box-shadow-color);
}

.circular-icon {
    background-color: black;
    color: white;
    overflow: visible;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    margin: -20px 0px;
    justify-self: end;
}