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

.search-container {
    text-align: center;
}

input {
    padding: 12px 20px;
    width: 350px;
    border-radius: 20px;
    border: 1px solid #444;
    background: #222;
    color: white;
    outline: none;
}

button {
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    background: #de5833;
    color: white;
    cursor: pointer;
    margin-left: 10px;
}

button:hover {
    background: #ff6b42;
}