body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121212;
    color: #e0e0e0;
}

.container {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    width: 300px;
    text-align: center;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #2e2e2e;
    color: #e0e0e0;
    border: 1px solid #444;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #3a3a3a;
    color: #e0e0e0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

.results-container, .recent-searches-container {
    background-color: #1e1e1e;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.results-container h3, .recent-searches-container h2 {
    margin-bottom: 10px;
}

#results {
    margin-top: 20px;
}

#results p {
    margin: 5px 0;
}

#recentSearches {
    list-style-type: none;
    padding: 0;
}

#recentSearches li {
    margin: 5px 0;
    cursor: pointer;
    color: #64b5f6;
}

#recentSearches li:hover {
    text-decoration: underline;
}
