/* Global styles */
body {
  background-color: #fdf6e3;
  font-family: 'Courier New', Courier, monospace;
  color: #333;
  text-align: left;
  padding: 2em;
}

/* Monospaced blocks */
pre, code {
  font-family: 'Courier New', Courier, monospace;
  white-space: pre;
}

/* Banner styling */
.banner {
  font-weight: bold;
  font-size: 1.2em;
  white-space: pre;
  margin-bottom: 1em;
  text-align: left;
}

/* Weather panel */
.weather {
  font-size: 1.1em;
  margin-top: 1em;
}

/* Terminal-style status block */
.status {
  font-family: 'Courier New', Courier, monospace !important;
  color: #00ff00;
  background-color: #000;
  width: 800px;
  display: block;
  position: absolute;
  top: 100%; /* ensures it appears below the button */
  left: 0;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
}
/*Dropdown Menu*/

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute; 
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}
/* show dropdown on hover */
.dropdown:hover  .dropdown-content {
  display: block;
}

/* ✅ Toggle visibility when checkbox is checked */
#menu-toggle:checked ~ .dropdown-content {
  display: block;
}
