
/* Data Terminal Styles */
.sector-unlocked {
position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: #00ff00;
  padding: 10px 20px;
  border: 1px solid #00ff00;
  z-index: 100;
  animation: flash 2s;
}

@keyframes flash {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
/* Shared Styles for Cedar Hollow Terminal */
body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', Courier, monospace;
  background-color: #000;
  color: #00cc00; /* Slightly more professional green text */
  overflow-y: auto; /* Enable vertical scrolling */
}
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}
a {
  color: #00cc00; /* Professional green links */
  text-decoration: none;
}

a:hover {
  color: #ffffff; /* Pure white on hover */
  text-decoration: underline;
}
.border-green {
  border: 1px solid #00cc00; /* Professional green border */
}
.hit-counter {
  font-family: 'Courier New', Courier, monospace;
  font-size: 24px;
  letter-spacing: 2px;
  color: #00cc00; /* Professional green counter */
}
.under-construction {
  display: block;
  margin: 20px auto;
}
/* Table styles for terminal interface */
.data-table {
border: 1px solid #00cc00; /* Professional green table border */
  border-collapse: collapse;
  width: 100%;
  background-color: #000;
}

.geocities-table th,
.geocities-table td {
  border: 1px solid #00cc00; /* Professional green cell borders */
  padding: 8px;
  text-align: left;
}

.geocities-table th {
  background-color: #002200; /* Darker header background for professionalism */
}
