.google-sheet-search-container {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    max-width: 100%;
}

#g-sheet-search-form {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

#g-sheet-search-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ccc;
		 height: 50px;
	 border-radius:7px 0 0 7px;
}

#g-sheet-search-form button {
    /* padding: 8px 15px; */
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    min-width: 200px;
    height: 50px;
    border-radius: 0 7px 7px 0;
}

#g-sheet-search-form button:hover {
    background-color: #008ac5;
}

#g-sheet-search-results ul {
    list-style-type: none;
    padding: 0;
}

#g-sheet-search-results li {
    padding: 10px;
    font-size: 18px;
}
#g-sheet-search-results li strong {
    color: red;
}
#g-sheet-search-results li:last-child {
    border-bottom: none;
}

#g-sheet-search-results li p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #555;
}