body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

#links-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 40px;
  font-size: 24px;
  background: black;
  color: white;
  border: 2px solid white;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

#links-button:hover {
  background-color: white;
  color: black;
}

#links-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%; /* Increased width */
    max-width: 700px; /* Increased max-width for larger container */
    padding: 20px;
    background-color: red;
  }

.section-image {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%; /* Ensure it doesn't exceed the container */
    width: 220px; /* Increased size by 20px for better visibility */
    height: auto; /* Maintain aspect ratio */
        /* pointer-events: none; */  /* REMOVE or COMMENT OUT THIS LINE */
  }

.hidden { display: none; }

#links-section a, form button {
  display: block;
  background-color: black;
  color: white;
  text-align: center;
  padding: 10px;
  margin: 5px 0;
  text-decoration: none;
  font-weight: bold;
  border: none;
  border-radius: 0;
}

#links-section a:hover, form button:hover {
  background-color: red;
  color: white;
}

@media (max-width: 768px) {
  #links-section { width: 95%; }
}

#password-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column; /* Stack username and password vertically */
  align-items: center;
}

#username-box {
  margin-bottom: 5px; /* Add spacing below username */
}

#password-box {
  margin-right: 5px; /* Add spacing to the right of password */
}

#password-enter {
  padding: 5px;
  font-size: inherit;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  height: 30px; /* Match height with input boxes */
}

#result {
  background-color: black;
  color: white; /* Make the text white */
  padding: 10px;
  max-height: 300px; /* Limit the height */
  max-width: 100%; /* Ensure it fits within the screen */
  overflow-y: auto; /* Add vertical scrolling */
  word-wrap: break-word; /* Wrap long text */
  font-size: 14px; /* Reduce font size for compactness */
  border: 1px solid white;
  margin-top: 10px;
}

table td, table th {
  padding: 10px; /* Add more spacing between lines */
}

#links-section::after {
  content: none;
}