@import url("app.css");

.container-select {
    border: 1.5px solid var(--bg-color);
    padding: 0.6rem 1rem;
    border-radius: 0.2rem;
    min-width: 230px;
    cursor: pointer;
    position: relative;
}
.dropdown {
    position: absolute;
    border: 1.5px solid var(--bg-color);
    width: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1;
    top: 3rem;
    display: none;
}
.options {
    margin: 0.3rem 0 !important;
}
.option {
    padding: 0.3rem 0.7rem;
}
.option:hover {
    background-color: rgb(246, 246, 246);
}
#dropdown-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}
.rotate-svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.container-select.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}
@media screen and (min-width: 1400px) {
    #dropdown-button {
        font-size: 16px;
    }
}
