

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0b0b0b;
  color: #e0ffe0;
  position: relative;
  min-height: 100vh;
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/Bg_img.svg'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0.5; 
}

header {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #39ff14;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

header h1 {
  font-size: 2.2rem;
  margin: 0;
  color: #39ff14;
}

.tagline {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 5px;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

nav a {
  color: #e0ffe0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  padding: 5px 10px;
}

nav a:hover {
  color: #00ffcc;
}

main {
  padding: 20px;
  /* backdrop-filter: blur(4px); */
}

.intro {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.1);
}

.intro p{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
}

button#filterBtn {
  background-color: #39ff14;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

button#filterBtn:hover {
  background-color: #00ffcc;
  transform: scale(1.05);
}

.table-container {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 10px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(17, 17, 17, 0.055);
  box-shadow: 0 0 10px #39ff14;
  backdrop-filter: blur(6px);
  border-radius: 10px;
  overflow: hidden;
  min-width: 600px;
  
}
.result-table{
  background-color: rgba(17, 17, 17, 0.055);
}

table th, table td {
  
  border: 1px solid #39ff14;
  padding: 8px 12px;
  text-align: center;
  font-size: 0.9rem;
}
tbody{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 2.5rem;
}

table th {
  background-color: #111;
  color: #00ffcc;
}

.result-table td:last-child {
  font-weight: bold;
}

.result-table td:last-child::before {
  content: '✅';
  margin-right: 5px;
  color: #39ff14;
}

#longTable td:last-child {
  
  color: #00ff00;
}

#shortTable td:last-child {
  color: #ff0000;
}

footer {
  text-align: center;
  padding: 20px;
  border-top: 2px solid #39ff14;
  background-color: #0000001d;
  color: #39ff14;
}


@media (max-width: 768px) {
  main {
    padding: 10px;
  }

  table {
    font-size: 0.75rem;
    min-width: unset;
  }

  table th, table td {
    padding: 6px;
    font-size: 0.75rem;
  }

  header h1 {
    font-size: 1.6rem;
  }

  .tagline {
    font-size: 0.8rem;
  }

  nav a {
    margin: 0 5px;
    font-size: 0.85rem;
  }

  .intro {
    font-size: 0.85rem;
  }

  button#filterBtn {
    font-size: 0.85rem;
    padding: 8px 15px;
  }

  .table-container {
    overflow-x: auto;
  }
}
