body {
    font-family: 'Times New Roman', Times, serif;
    background: #f4f6f8;
    margin: 0;
    padding: 0;
}

/* Main Container */
#weatherApp {
    margin: 80px auto;
    width: 350px;
    padding: 25px;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Heading */
#weatherApp h1 {
    margin-bottom: 20px;
}

/* Input + Button Container */
.search-box {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

/* Input Field */
#location-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    flex: 1;
}

/* Input Focus Effect */
#location-input:focus {
    border-color: #007bff;
}

/* Button */
#search-btn {
    padding: 10px 15px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

/* Button Hover */
#search-btn:hover {
    background: #0056b3;
}

/* Weather Data Box */
#weather-data {
    margin: 0 auto;
    width: 100%;
    padding: 5px;
    border-radius: 2px;
    background: #f1f3f5;
    align-items: center;
}