/* Reset default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body styling */
body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #000000;
  color: #28a745;
  padding: 20px;
  text-align: center;
}

/* Header styling */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
  padding: 0 !important;
  margin-bottom: 30px;
  box-shadow: none !important;
}

/* Logo styling */
.logo {
  width: 100vw;
  height: auto;
  object-fit: contain;
}

/* Search box styling */
#searchBox {
  width: 80%;
  max-width: 600px;
  padding: 15px 20px;
  font-size: 1.5rem;
  border: 2px solid #28a745;
  border-radius: 12px;
  margin-bottom: 20px;
  outline-color: #28a745;
  font-family: 'Courier New', Courier, monospace;
  font-style: normal;
  font-weight: normal;
  background-color: #000000;
  color: #28a745;
}

/* Results list */
#results {
  list-style-type: none;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0;
  text-align: left;
}

/* Result item */
#results li {
  background-color: #000;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #28a745;
}

/* Hide any h1 */
h1 {
  display: none;
}

