/* Base layout and typography */
body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  overflow-y: auto;
}

/* Header styling */
h1 {
  text-align: center;
  color: #76c7c0;
  margin-bottom: 30px;
}

h2 {
  text-align: center;
  color: #76c7c0;
  margin-bottom: 30px;
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #1e1e1e;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

th, td {
  border: 1px solid #333;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #333;
  color: #76c7c0;
}

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

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

/* Button container for vertical stacking and centering */
.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Button styling */
.top-right {
  position: absolute;
  top: 20px;
  right: 20px;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #76c7c0;
  color: #121212;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
  background-color: #5aa9a4;
  color: #ffffff;
}
