body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.searchBox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-top: 15vh;
}

.searchBox input {
    padding: 8px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    width: 200px;
}

.searchBox button {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    background-color: #555;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.searchBox button:hover {
    background-color: #777;
}

.weatherPanel {
    margin-top: 20px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.image-container {
    max-width: 30vh;
    max-height: 30vh;
    overflow: hidden;
    border-radius: 5px;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}