
.weather-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
margin-top:15px;
}

.weather-box{
background:rgba(255,255,255,0.05);
padding:10px;
border-radius:10px;
text-align:center;
font-size:14px;
}

.weather-day{
background:rgba(255,255,255,0.04);
padding:10px;
border-radius:12px;
text-align:center;
min-width:90px;
}

.weather-day img{
width:40px;
}
