.sm-seletor {
    max-width: 480px;
    font-family: inherit;
}

.sm-seletor__titulo {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sm-seletor__campos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.sm-select {
    width: 100%;
    padding: 0.6rem 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    font-size: 0.9rem;
}

.sm-select:disabled {
    background: #f2f2f2;
    color: #999;
}

.sm-seletor__btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background: #ffa500;
    color: #1a1304;
    font-weight: 600;
    cursor: pointer;
}

.sm-seletor__btn:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.sm-seletor__erro {
    color: #b3261e;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.sm-seletor__resultado {
    margin-top: 1rem;
}

.sm-seletor__lista {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sm-seletor__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.sm-seletor__item:hover {
    border-color: #ffa500;
}

.sm-seletor__sem-resultado {
    font-size: 0.9rem;
    color: #666;
}
