body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    color: #333;
}

.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

h1 {
    color: #4285f4; /* Google blue */
    margin-bottom: 30px;
    font-size: 2.5em;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    font-size: 1.1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box; /* Include padding in width */
}

.search-input:focus {
    border-color: #4285f4;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

.search-button {
    background-color: #4285f4;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 24px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-button:hover {
    background-color: #357ae8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.results {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: left;
    min-height: 80px; /* Ensure some space even if empty */
}

.results p {
    margin: 5px 0;
    font-size: 1.1em;
}

.results .error {
    color: #ea4335; /* Google red */
    font-weight: bold;
}

.results .success {
    color: #fbbc05; /* Google yellow */
}

.results .message {
    color: #34a853; /* Google green */
}
