:root {
  --background-color: #ffffff91;
}

.table-body {
  margin-top: 45px;
  font-size: 1.5rem;
  margin-inline: auto;
  text-align: center;
  width: 45%;

  float: right;
}

.title {
  font-size: 1.2rem;
  font-weight: bold;
}

table {
  background: var(--background-color);
  margin-top: 30px;
  width: 80%;
  margin-top: 30px;
  margin: auto;
  filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03))
    drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
  border-radius: 10px;
}

tr {
  line-height: 60px;
}

.contact-body {
  margin-top: 45px;
  font-size: 1.5rem;
  margin-inline: auto;
  text-align: center;
  width: 45%;
  float: left;
}

.contact {
  margin: auto;
  width: 80%;
  filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03))
    drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
  border-radius: 10px;
}

.contact-button {
  display: inline-block;
  width: 30%;
  height: 45px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 45px;
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #0056b3;
}

.message-body {
  border: 0;
  padding: 1rem;
  margin-top: 45px;
  font-size: 1.2rem;
  margin-inline: auto;
  text-align: center;
  width: 45%;
  float: left;
}

.message {
  border: 0;
  padding: 1rem;
  background: var(--background-color);
  margin-bottom: 30px;
  width: 80%;
  font-size: 1rem;
  font-weight: bold;
  filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03))
    drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
  border-radius: 10px;
}

.message-button {
  border: 0;
  display: inline-block;
  cursor: pointer;
  width: 30%;
  height: 45px;
  margin-bottom: 30px;
  background-color: var(--theme-primary);
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.2rem;
  line-height: 45px;
  transition: background-color 0.3s;
  filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03))
    drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
}

.button-text {
  color: black;
  text-decoration: none;
}

textarea {
  resize: vertical;
}

.message-button:hover {
  background-color: var(--theme-secondary);
}
