body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.top-navigation {
  display: flex;
  justify-content: center;
  padding: 10px;
  color: #fff;
}

.location-name {
  font-size: 25px;
  font-weight: bold;
}

.weather-info {
  padding: 20px;
}

.weather-gradient {
  background: linear-gradient(to top left, #0077FF, #003D7F);
  padding: 20px;
  border-radius: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.weather-summary {
  text-align: center;
}

.current-temperature {
  font-size: 36px;
  font-weight: bold;
}

.feels-like {
  font-size: 16px;
}

.hamburger-menu {
  cursor: pointer;
  padding: 5px;
  background-color: #222;
  color: #fff;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 250px;
  background-color: #222;
  transform: translateX(-250px);
  transition: transform 0.3s ease;
  z-index: 100;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 20px;
}

.side-menu li {
  margin-bottom: 10px;
}

.side-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.side-menu a i {
  margin-right: 10px;
}

.weather-parameters {
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
}

.weather-parameters td {
  padding: 10px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.weather-parameters td i {
  margin-bottom: 5px;
}

.weather-parameters td h4 {
  margin: 0;
  font-size: 16px;
}

.weather-parameters td p {
  margin: 0;
  font-size: 14px;
}

.bottom-navigation {
  position: fixed;
  bottom: 00;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-around;
  padding: 10px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.bottom-navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.bottom-navigation li {
  display: inline-block;
  margin: 0 10px;
}

.bottom-navigation a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
}

.bottom-navigation a i {
  margin-bottom: 3px;
}

.forecast-table {
  margin: 20px;
}

.forecast-table table {
  width: 100%;
  border-collapse: collapse;
}

.forecast-table th, .forecast-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.forecast-table th {
  background-color: #f5f5f5;
}

.forecast-table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

.forecast-table tbody tr:hover {
  background-color: #ddd;
}
