body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  color: #333;
}

header {
  text-align: center;
  margin-bottom: 30px;
  padding: 10px 0;
  background-color: #4caf50;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2.5em;
  color: #f4f4f9;
  margin: 0;
  font-weight: bold;
}

header h2 {
  font-size: 1.2em;
  color: #f4f4f9;
  margin-top: 10px;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  width: 80%;
  margin: 20px auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: thin solid #dddddd90;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

th {
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f1f1f1;
}

.popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  padding: 20px;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  text-align: center;
  font-size: 1em;
  border-radius: 10px;
  animation: fadeIn 0.3s ease-out;
}

.popup h2 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #4caf50;
}

.popup p {
  font-size: 1em;
  margin-bottom: 20px;
}

.popup button {
  padding: 10px 15px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
}

.popup button:hover {
  background-color: #45a049;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  table {
    width: 90%;
    font-size: 0.9em;
  }

  .popup {
    width: 75%;
  }
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
span {
  cursor: pointer;
  text-decoration: none;
}

span:hover {
  text-decoration: underline;
}

.info-section {
  margin: 3% auto;
  padding: 20px;
  width: 80%;
  background-color: #f9f9f9;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-family: Arial, sans-serif;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.info-section li {
  margin-bottom: 5px;
  font-size: 1em;
  color: #333;
}

.info-section li strong {
  color: #4caf50;
}

.info-section p {
  font-size: 1.2em;
  color: #4caf50;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
}
.watermark {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 0.8em;
    color: rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    z-index: 100;
    pointer-events: none;
}
