body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f9f9f9;
  color: #333;
}

.home-link {
  position: absolute;       
  top: 15px;
  left: 20px;
  text-decoration: none;
  color: #2c3e50;
  font-size: 18px;
  font-weight: bold;
  background-color: #f0f0f0;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.home-link:hover {
  background-color: #d9d9d9;
}

#table-heading {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 15px;
}

table {
  width: 60%;
  margin: 0 auto;
  border-collapse: collapse;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

table thead {
  background-color: #2c3e50;
  color: white;
}

th, td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
}

tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.highlight-row {
  background-color: #ffdd57;
}

#form-container {
  width: 400px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#form-container h2 {
  margin-bottom: 15px;
  color: #2c3e50;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-top: 10px;
  text-align: left;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.submit-btn {
  background-color: #2c3e50;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #34495e;
}

form p {
  margin: 10px 0 5px;
}
