/* Styles for the Froge AI interactive maps! */

body {
  background-color: #eef;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.map-container {
  width: 80%;
  margin: 0 auto;
  border: 2px solid #cceecc;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.map-frame {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
}

.controls {
  text-align: center;
  padding: 10px;
}

.controls button {
  background-color: #98e698;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 16px;
  margin: 5px;
  color: #fff;
  transition: background-color 0.3s;
}

.controls button:hover {
  background-color: #76c276;
}

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #888;
}

footer a {
  color: #98e698;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Media queries */

@media (max-width: 600px) {
  .map-container {
    width: 100%;
  }

  .controls button {
    font-size: 14px;
    padding: 6px 12px;
  }
}