body {
  background-color: #F4ECE3;
  /* Light warm beige */
  font-family: Arial, sans-serif;
  color: #5A4634;
  /* Soft warm brown */
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  text-align: center;
  background-color: #EDE3D0;
  /* Soft warm beige */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #8B6F47;
  /* Warm muted brown */
}

input[type="text"] {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  border: 1px solid #C5B79E;
  /* Muted beige */
  border-radius: 5px;
  background-color: #FDF8F3;
  /* Very light beige */
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
}

button,
#buy-coffee {
  padding: 10px 20px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  background-color: #D7B98E;
  /* Warm muted beige */
  color: #FFF;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

button:hover,
#buy-coffee:hover {
  background-color: #C5A478;
  /* Slightly darker warm beige */
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th,
td {
  border: 1px solid #C5B79E;
  /* Muted beige */
  padding: 8px;
  text-align: left;
}

th {
  background-color: #D9CBB7;
  /* Soft warm beige */
}

td {
  background-color: #FDF8F3;
  /* Very light beige */
}

a {
  color: #8B6F47;
  /* Warm muted brown */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

th:nth-child(1),
td:nth-child(1) {
  width: 40%;
  /* Adjust the width as needed */
}

th:nth-child(2),
td:nth-child(2) {
  width: 10%;
  /* Adjust the width as needed */
  text-align: center;
  /* Center text */
}

th:nth-child(3),
td:nth-child(3) {
  width: 20%;
  /* Adjust the width as needed */
}

th:nth-child(4),
td:nth-child(4) {
  width: 30%;
  /* Adjust the width as needed */
}

footer {
  background-color: #D9CBB7;
  /* Soft warm beige */
  padding: 20px;
  border-top: 1px solid #C5B79E;
  /* Muted beige */
  text-align: center;
  margin-top: 20px;
  border-radius: 0 0 10px 10px;
}

footer p {
  margin: 0;
  color: #5A4634;
  /* Soft warm brown */
  font-size: 14px;
}

footer a {
  color: #8B6F47;
  /* Warm muted brown */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

.contact-link {
  position: absolute;
  top: 10px;
  right: 10px;
}

.contact-link a {
  text-decoration: none;
  color: #5A4634;
  font-weight: bold;
}

.contact-link a:hover {
  text-decoration: underline;
}