/* Styling for buttons */

.container {
    max-width: 800px;
    margin: 0 auto;
}

.list-item {
    margin-bottom: 20px;
}


.button {
    display: inline-block;
    margin-bottom: 5px;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.button.selected {
    background-color: #007bff;
    color: #fff;
}

/* Styling for search input */
#searchInput {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}