.pick-plus {
    position: relative;
    width: 100%;
    font-family: inherit;
    font-weight: 500;
    max-height: 34px;
    z-index: 100;
}

.pick-selected {
    border: 1px solid #e5e6e7;
    padding: 7px 12px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    transition: border-color 0.2s ease;
}

.pick-selected:hover {
    border-color: #1a7bb9;
}

.pick-arrow {
    font-size: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.pick-content {
    padding-right: 12px;
}

.pick-down {
    position: absolute;
    /* top: 100%; */
    left: 0;
    right: 0;
    border: 1px solid #e5e6e7;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.pick-down.open {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
}

.pick-down input {
    width: 100%;
    padding: 8px 32px;
    border: none;
    border-bottom: 1px solid #e5e6e7;
    box-sizing: border-box;
    outline: none;
}

.pick-options {
    max-height: 150px;
    overflow-y: auto;
}

.pick-options div {
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pick-options div:hover,
.pick-options .active {
    background-color: #1a7bb9;
    color: white;
}

.pick-group {
    position: relative;
    display: inline-block;
    width: 100%;
}

.pick-group i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.pick-default {
    display: none;
}

.highlight {
    background-color: #ffe66d;
    color: #000;
    font-weight: bold;
    border-radius: 2px;
    padding: 0 2px;
}

.pick-count {
    padding: 6px 8px;
    font-size: 11px;
    color: #1a7bb9;
    text-align: right;
}

.pick-plus {
    position: relative; /* cria contexto para o dropdown */
    z-index: 1; /* base normal */
}

.pick-down {
    position: absolute;
    top: 100%; /* aparece abaixo do botão */
    left: 0;
    z-index: 9999; /* garante que fica por cima */
    background: #fff;
    border: 1px solid #ccc;
}