body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}

/* Table styles */
.table {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

table {
  width: 90%;
  border-collapse: collapse;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

th {
  background: blue;
  color: white;
  padding: 12px;
  font-weight: bold;
}

td {
  padding: 12px;
  background: #fff;
}

tbody tr:nth-child(even) td {
  background: #eee;
}

/* Form styles */
.form-container {
  background: white;
  width: 400px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.form-container h2 {
  margin-bottom: 20px;
  color: #222;
}

form {
  text-align: left;
}

label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

button {
  margin-top: 20px;
  width: 100%;
  background-color: #2196f3;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #0b7dda;
}
