body {
  font-family: 'Georgia', serif;
  background-color: #fdfaf6;
  margin: 0;
  padding: 0;
  color: #2e2b2b;
}

h1, h2 {
  text-align: center;
  color: #3b2f2f;
  margin-top: 1.5rem;
}

p {
  text-align: center;
  max-width: 700px;
  margin: 1rem auto;
  line-height: 1.6;
  color: #4a403a;
}

nav {
  background-color: #3b2f2f;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

nav a {
  color: #f4e9d8;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffd580;
}

table {
  width: 85%;
  margin: 2rem auto;
  border-collapse: collapse;
  background-color: #fffdf9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: left;
}

th {
  background-color: #f0e6da;
  color: #3b2f2f;
  font-size: 1.1rem;
  border-bottom: 2px solid #d4c3aa;
}

td {
  border-bottom: 1px solid #e5dccc;
}

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

td a {
  color: #5b3924;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

td a:hover {
  color: #c56e33;
  text-decoration: underline;
}

form {
  width: 80%;
  max-width: 700px;
  margin: 2rem auto;
  background-color: #fffdf9;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

label {
  font-weight: bold;
  color: #3b2f2f;
}

input[type="text"],
input[type="password"],
textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #c9bba5;
  border-radius: 8px;
  background-color: #fdfaf6;
  font-size: 1rem;
  font-family: inherit;
  color: #3b2f2f;
  resize: vertical;
}

textarea {
  min-height: 400px;
}

input[type="submit"],
input[type="button"] {
  background-color: #5b3924;
  color: #f4e9d8;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
input[type="button"]:hover {
  background-color: #c56e33;
}

a {
  color: #7a4b2e;
}

a:hover {
  color: #c56e33;
}

form + p {
  text-align: center;
}

h3 {
  color: red;
  text-align: center;
  font-weight: bold;
}
