.search-bar{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.search-bar input{
    width: 320px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
    transition: border 0.2s ease;
    height: 40px;
    box-sizing: border-box;
}

.search-bar input:focus{
    border: 1px solid #007bff;
}

.search-bar button{
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    background-color: #F6B11A;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 40px;
    box-sizing: border-box;
}

.search-bar button:hover{
    background-color: #F6B11A;
    transform: translateY(-1px);
}

.search-bar button:active{
    transform: translateY(0);
}