
body {
margin: 0;
font-family: Arial, sans-serif;
}

h1 {
text-align: center;
margin: 10px 0;
}

#map {
height: 90vh;
}
.button-container {
text-align: center; /* center the buttons horizontally */
margin-bottom: 10px;
}

/* shared styles for both buttons */
.button-container a {
display: inline-block;
padding: 12px 24px;
font-weight: bold;
text-decoration: none;
border-radius: 6px;
cursor: pointer;
margin: 0 5px; /* space between buttons */
color: white;
}

/* specific button colors */
.random-btn {
background: #FDC745;
color: white;
}

.random-btn:hover {
background: #D0872E;
}

.enquire-btn {
background: #314158;
color: white;
}

.enquire-btn:hover {
background: #D0872E;
}

.submit-btn {
background: #2c7be5;
color: white;
}

.submit-btn:hover {
background: #D0872E;
}

.report-btn {
background: #e52c2c;
color: white;
}

.report-btn:hover {
background: #D0872E;
}

.site-footer {
width: 100%;
box-sizing: border-box;
padding: 16px 12px;
font-size: 0.85em;
color: #555;
text-align: center;
}

.site-footer p {
margin: 6px 0;
}

.site-footer a {
color: #555;
text-decoration: underline;
}


.top-menu {
  display: flex;
  justify-content: center;
  background: #314158;
  padding: 12px 0;
  gap: 24px;
  font-size: 1.1em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

.top-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}

.top-menu a:hover {
  background: #D0872E;
}

