.search-button{
    height: 36px;
    padding: 0 16px;
    border-radius: 6px;
    border: none;
    background: #42a047;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-button:hover{
    background: #388e3c;
}

.search-button:active{
    transform: scale(0.97);
}