/* Cheki Weather - simple styles */
:root{
  --bg:#0b1220; --card:#0f1724; --accent:#60a5fa; --muted:#9aa4b2;
}
*{box-sizing:border-box}
body{
  margin:0;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Inter, system-ui, Arial, sans-serif;
  background:linear-gradient(180deg,#071021 0%, #0b1220 100%);
  color:#e6eef8;
  padding:20px;
}
.card{
  width:100%;
  max-width:820px;
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius:12px;
  padding:20px;
  box-shadow:0 8px 30px rgba(2,6,23,0.6);
}
h1{margin:0 0 12px 0; font-size:22px}
.controls{display:flex; gap:8px; margin-bottom:14px; flex-wrap:wrap}
.controls input{flex:1; min-width:160px; padding:8px 10px; border-radius:8px; border:1px solid rgba(255,255,255,0.06); background:transparent; color:inherit}
.controls button{padding:8px 12px; border-radius:8px; border:0; cursor:pointer; background:var(--accent); color:#052034}
.hidden{display:none}
.loc{font-weight:600; margin-bottom:8px}
.row{display:flex; gap:18px; align-items:center}
.big{flex:1}
.temp{font-size:48px; font-weight:700}
.desc{font-size:16px; color:var(--muted)}
.small{min-width:180px; background:rgba(255,255,255,0.02); padding:10px; border-radius:8px}
.forecast{display:flex; gap:8px}
.forecast .item{flex:1; padding:8px; border-radius:8px; background:rgba(255,255,255,0.02); text-align:center}
.note{margin-top:12px; color:var(--muted); font-size:13px}
footer{margin-top:12px; color:var(--muted); font-size:12px}
@media(max-width:560px){
  .row{flex-direction:column; align-items:flex-start}
  .controls{flex-direction:column}
}
