body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f7f6;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px; /* Added padding to avoid cutting off */
  box-sizing: border-box; /* Ensure padding is included in element's width and height */
}

.outer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.inner {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
}

#logo {
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
}

#logo img {
  height: 68px;
  width: auto;
}

#title {
  padding: 20px;
  background-color: #ffffff;
  text-align: center;
}

#title h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #333333;
}

#intro {
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  background-color: #f4f7f6;
  text-align: center;
}

#intro a {
  color: #007acc;
  text-decoration: none;
}

#intro a:hover {
  text-decoration: underline;
}

#main {
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
}

#table {
  margin-top: 10px;
  overflow: auto;
}

table {
  width: 100%;
}

#verification {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#verificationtext {
  margin-right: 10px;
}

.success {
  color: #00a000;
}

.failure {
  color: #ff0000;
}
.button {
  background-color: #EB5B25;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #142050;
}

.button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(235, 91, 37, 0.5);
}

#verification strong {
  flex-basis: 100%; /* Make the strong text take full width */
  margin-bottom: 10px; /* Add space below the strong text */
}

#verification input[type="checkbox"] {
  margin: 0 10px 0 0; /* Adjust margins around the checkbox */
  transform: translateY(2px); /* Adjust vertical alignment of checkbox */
}

#verification button {
  padding: 8px 16px; /* Add padding to the button */
  background-color: #EB5B25;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 40px; /* Fixed height for better alignment */
  display: flex;
  align-items: center; /* Center text inside the button */
  justify-content: center;
  transform: translateY(-2px); /* Adjust vertical alignment of button */
}

#verification button:hover {
  background-color: #142050;
}

#verification button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
