body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

#weather-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    padding: 20px;
    width: 300px;
    position: relative;
}

#search-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#city-input {
    flex-grow: 1;
    border: none;
    border-radius: 5px 0 0 5px;
    padding: 5px;
}

#search-button {
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 0 5px 5px 0;
    padding: 5px 10px;
    cursor: pointer;
}

h1, h2, h3 {
    text-align: center;
}

#weather-details {
    text-align: center;
}