body {
    font-family: Arial, sans-serif;
    /* Change the background to a soft blue-gray */
    background-color: #e6eef4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.weather-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

h1 {
    /* Change the main title color to a darker blue */
    color: #2a4b6e;
    margin-bottom: 20px;
}

#weather-info {
    font-size: 1.2rem;
    color: #555;
}

.loading {
    color: #888;
}

.city {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.weather-icon {
    width: 100px;
    height: 100px;
}

.temperature {
    font-size: 3rem;
    font-weight: bold;
    margin: 10px 0;
    /* Make the temperature stand out with the same dark blue */
    color: #2a4b6e;
}

.description {
    font-size: 1.5rem;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.details p {
    margin: 8px 0;
    font-size: 1.1rem;
}

/* Styles for the new search form */
#search-form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

#city-input {
    width: 70%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#search-form button {
    padding: 10px 15px;
    border: none;
    /* Using the blue from our color theme */
    background-color: #2a4b6e; 
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

#search-form button:hover {
    background-color: #3a6a9b;
}