
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f3f4f2;
  color:#111;
}

.topbar{
  background:linear-gradient(90deg,#082b14,#0b5d28);
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 30px;
}

.logo-section h1{
  font-size:30px;
}

.logo-section h2{
  font-size:52px;
  font-style:italic;
}

.title-section h1{
  font-size:42px;
}

.title-section p{
  color:#9ed4a4;
  margin-top:6px;
}

.save-btn{
  background:#4c9c58;
  border:none;
  color:white;
  padding:14px 22px;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
}

.tabs{
  display:flex;
  gap:12px;
  padding:20px;
  background:white;
  border-bottom:1px solid #ddd;
}

.tab{
  padding:12px 18px;
  border:none;
  border-radius:8px;
  background:#e8e8e8;
  font-weight:bold;
  cursor:pointer;
}

.tab.active{
  background:#0b5d28;
  color:white;
}

.dashboard{
  display:grid;
  grid-template-columns:3fr 1fr;
  gap:20px;
  padding:20px;
}

.sheet,
.weather{
  background:white;
  border-radius:14px;
  padding:20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

table{
  width:100%;
  border-collapse:collapse;
}

thead{
  background:#0b5d28;
  color:white;
}

th, td{
  border:1px solid #ddd;
  padding:16px;
  text-align:left;
  min-height:50px;
}

tbody tr:hover{
  background:#f3faf3;
}

#addRow{
  margin-top:18px;
  background:white;
  color:#0b5d28;
  border:2px solid #0b5d28;
  padding:12px 18px;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}

.weather h3{
  color:#0b5d28;
  margin-bottom:20px;
}

.weather-temp{
  text-align:center;
  margin-bottom:30px;
}

.weather-temp h1{
  font-size:64px;
  color:#0b5d28;
}

.weather-temp p{
  margin-top:10px;
  text-transform:capitalize;
}

.weather-stats{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.weather-stats div{
  background:#f4f4f4;
  padding:14px;
  border-radius:10px;
}

.weather-stats span{
  display:block;
  color:#666;
  margin-bottom:5px;
}

@media(max-width:900px){
  .dashboard{
    grid-template-columns:1fr;
  }

  .topbar{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }

  .tabs{
    overflow-x:auto;
  }
}
