/* src/components/SearchBar.css */

.search-bar-wrapper {
    display: flex;
    align-items: center; /* Align the input and button on the same line */
    justify-content: center; /* Center the search bar wrapper */
    max-width: 100px; /* Maximum width of the search bar */
    width: 100%; /* Responsive width */
    padding: 10px;
    box-sizing: border-box;
}

.search-input {
    flex-grow: 1; /* Allow the input to grow and fill the space */
    margin-right: -1px; /* Overlap the border with the button */
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #dfe1e5;
    border-radius: 24px 0 0 24px; /* Only round the left corners */
    outline: none;
}

.search-btn {
    padding: 10px;
    background-color: #f8f8f8;
    border: 1px solid #dfe1e5;
    border-radius: 0 24px 24px 0; /* Only round the right corners */
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    outline: none;
}

.search-btn:hover {
    background-color: #e8eaed;
}

.search-btn svg {
    width: 20px; /* Size of the search icon */
    height: 20px;
}
