/* container */
.search-dropdown{
    position: relative;
    width: 260px;
}

/* input */
.search-input{
    width: 100%;
    height: 36px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

/* foco */
.search-input:focus{
    border-color: #42a047;
    box-shadow: 0 0 0 2px rgba(66,160,71,0.15);
}

/* dropdown */
.dropdown-list{
    position: absolute;
    top: 42px;
    width: 100%;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    background: white;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    z-index: 10;
}

/* itens */
.dropdown-item{
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s;
}

/* hover */
.dropdown-item:hover{
    background: #f5f5f5;
}