/* manage class subject and grad year */
.container {
  display: flex;
  justify-content: center;
  /* min-height: 80vh; */
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

fieldset {
  margin: 10px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 600px;
}

form, .delete-link {
  margin-top: 10px;
}

.delete-link {
  display: block;
  color: red;
  text-decoration: none;
  margin-top: 5px;
}

.delete-link:hover {
  text-decoration: underline;
}

button, select, input[type="text"] {
  padding: 8px;
  margin-top: 5px;
}

legend {
  font-size: 1.2rem;
  font-weight: bold;
}
