body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #121212;
  color: #ffffff;
}

#container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #1E1E1E;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#socials {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#socials a {
  text-decoration: none;
  display: inline-block;
}

#profile-pic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#profile-pic:hover {
  transform: scale(2.0);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

input,
button {
  padding: 10px;
  margin: 10px;
  font-size: 16px;
  width: 80%;
  border: 1px solid #444444;
  border-radius: 4px;
  background-color: #2A2A2A;
  color: #ffffff;
}

input::placeholder {
  color: #888888;
}

button {
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
  background-color: #444444;
  color: #ffffff;
}

#output {
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 10px 0;
  padding: 5px;
  border: 1px solid #444444;
  white-space: pre-wrap;
  display: inline-block;
  width: 100%;
  background-color: #1E1E1E;
  color: #ffffff;
}

table {
  margin: 20px auto;
  border-collapse: collapse;
  width: 100%;
  max-width: 600px;
  table-layout: fixed;
  background-color: #1E1E1E;
  border: 1px solid #444444;
}

td,
th {
  border: 1px solid #444444;
  text-align: center;
  padding: 8px;
  font-size: 16px;
  color: #ffffff;
}

td:hover {
  background-color: #444444;
  cursor: pointer;
}

#blockSelector {
  margin: 20px 0;
}

#blockDisplay {
  margin: 20px 0;
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #444444;
  padding: 10px;
  background-color: #1E1E1E;
}

hr {
  border: none;
  height: 1px;
  background-color: #444444;
}

h1, h2, h3, h4 {
  color: #ffffff;
}
