/*custom search 1*/
input:focus{
    outline: none;
}

.custom-search-bar {
    display: flex;
}

.custom-search-bar input {
    border: 1px solid var(--primary);
    padding: 10px;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
}

.custom-search-bar button {
    background-color: var(--primary);
    padding: 10px;
    color: white;
}
