* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.header-container {
  padding: 20px;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  background-color: rgb(0, 0, 0);
  display: flex;
  gap: 30px;
  box-shadow: 10px 10px 8px #888888;
}

.header-title {
  margin: 0;
  flex-grow: 0.96;
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.container {
  background-color: rgb(255, 255, 255);
  margin-top: 40px;
  width: 100%;
  height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.add {
  font-size: 30px;
  display: flex;
  margin-right: 5px;
  transition: margin 0.2s ease-in-out;
  background-color: gray;
}

.add:hover {
  background-color: yellowgreen;
  margin-top: -5px; /* Add unit (px) */
}

.add button {
  flex-grow: 1;
  background-color: rgb(224, 224, 223);
  border: none;
  border-radius: 20px;
  transition: margin 0.2s ease-in-out;
}

.add button:hover {
  background-color: rgb(0, 0, 0);
  color: white;
  border: 5px solid black;
}

.container div {
  width: 30vw;
  height: 30vh;
  background-color: rgba(223, 223, 223, 0.636);
  margin: 5px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 10px 10px 8px #888888;
  margin-right: 5px;
  transition: margin 0.2s ease-in-out;
}

.container div:hover {
  margin-top: -5px; /* Add unit (px) */
}

p {
  width: 95%;
  height: 2em;
  margin: 5px;
  align-content: center;
  text-align: center;
}

dialog {
  width: 50%;
  height: 50%;
  border-radius: 30px;
  background-color: rgb(0, 0, 0);
}

dialog::backdrop {
  backdrop-filter: blur(8px);
}

.closeButton {
  background-color: rgb(255, 76, 115);
  position: absolute;
  top: 23px;
  right: 23px;
  border-radius: 46%;

  border: dotted 1px rgb(0, 0, 0);
  background-color: black;
  color: white;
}

.closeButton:hover {
  background-color: rgb(255, 0, 0);
  color: rgb(0, 0, 0);
}

input {
  width: px;
}
form {
  background-color: rgba(243, 243, 243, 0.952);
  width: 100%;
  height: 100%;
  text-align: center;
  align-content: center;
  font-size: 30px;
  border-radius: 20px;
}

.submitButton {
  background-color: rgb(0, 0, 0);
  border: solid 1px rgb(247, 247, 247);
  border-radius: 20px;
  color: white;
}
.submitButton:hover {
  background-color: rgb(255, 255, 255);
  border: solid 1px rgb(0, 0, 0);
  border-radius: 20px;
  color: rgb(0, 0, 0);
}

.status-button,
.delete-button {
  width: 50%;
  align-self: center;
  margin-bottom: 5px;
  margin-top: 10px;
  border: none;
  background-color: rgb(238, 243, 238);
  border-radius: 20px;
}

.status-button {
  background-color: rgb(248, 215, 29);
}

.status-button:hover {
  background-color: yellow;
}
.delete-button:hover {
  background-color: black;
  color: white;
}

.footer {
  background-color: yellow;
}

form > * {
  outline: none;
  border: none;
  transition: border 0.1s ease;
  border-radius: 20px;
}

form > *:focus {
  border: 3px rgb(0, 0, 0) dotted;
}
