﻿.search-input {
    /* Basic styling for the input field */
    padding: 10px;
    border: 1px solid #e5e0e0;
    width: 250px; /* Adjust as needed */
    /* Rounded corners */
    border-radius: 20px; /* Adjust the value for desired roundness */
}

.search-button {
    /* Basic styling for the button */
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    /* Optional: Round the button corners to match the input */
    border-radius: 20px; /* Adjust to match the input's border-radius */
}

/* Optional: Style the form container */
.search-bar {
    display: flex; /* Aligns input and button horizontally */
    align-items: center;
    /*justify-content: center;  Centers horizontally */
}
