* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
#Weather-Fore_Cast {
    background: linear-gradient(to right, #143e1d, #78e071, #143e1d);
    background-image: url('/image/BG1.jpeg');
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background Overlay */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: url('/image/BG1.jpg') no-repeat center center, url('/image/Rectangle.png') no-repeat center center; 
    background-size: cover, contain;
    opacity: 0.80;
    z-index: -1;
}

.container {
    background: rgba(255, 255, 255, 0.485);
    padding: 20px;
    border-radius: 10px;
    border-color: #073816;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 700px;
    
    position: relative;
    z-index: 1;
}

.weather-title {
    margin-bottom: 15px;
    color: #073816;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#cityInput {
    flex: 1;
   background-color: #ffffff;
}
input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background: #064114;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #218838;
}

.weather-box {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 5px;
}

.weather-box p {
    font-size: 18px;
    margin: 5px 0;
}

.error-message {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}