body {
  font-family: 'Arial';
  font-weight: 400;
}

.container {
  border: solid 2px black;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  position: fixed;
  min-width: min-content;
  max-width: 30%;
  height: fit-content;
  inset: 0;
  margin: auto;
  padding: 40px 30px 70px 30px;
}

.container > h3 {
  margin: 5px auto 20px auto;
}

.form {
  display: flex;
  flex-direction: column;
}

.form > * {
  padding: 20px;
}

.form > input {
  border: solid 2px black;
  margin: 10px 0;
  color: #B0B0B0;
}

.form > input:focus {
  border: solid 3px #B283FF;
  outline: none;
}

.form > button {
  color: white;
  background-color: #B283FF;
  border: none;
  margin: 40px auto;
  width: 55%;
  font-size: 120%;
}

.linkButtonContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.linkButtonContainer > button {
  background: none;
  border: none;
  color: #B283FF;
}

.linkButtonContainer > button:hover {
  text-decoration: underline;
}

.linkButtonContainer > button:only-child {
  margin: 0 auto;
}

.messageContainer {
  height: 80vh;
  overflow-y: scroll;
  background-color: #919191;
}

.messageContainer > div {
  background-color: #D9D9D9;
  margin: 0.8em;
  padding: 0.2em 1em;
  border-radius: 10px 10px 10px 0;
}

.messageInputForm {
  height: 18vh;
  background-color: #919191;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.messageInputForm > * {
  font-size: inherit;
  margin: 1.2em;
}

.messageInputForm > textarea {
  padding: 0.5em;
  width: 90%;
  height: 75%;
  resize: none;
}

.messageInputForm > button {
  background-color: #454545;
  color: white;
  padding: 1em;
  border: none;
}

.createTaskPage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.createTaskPage > * {
  width: 35%;
}

.createTaskPage > h2 {
  color: #B283FF;
}

.createTaskForm {
  display: flex;
  flex-direction: column;
}

.createTaskForm > label {
  margin-bottom: 0.5em;
}

.createTaskForm > input,textarea {
  margin-bottom: 1.5em;
  padding: 0.5em;
}

.createTaskForm > textarea {
  height: 15em;
  resize: none;
}

.createTaskForm > button {
  width: 20%;
  background-color: #B283FF;
  color: white;
  border: none;
  align-self: center;
  padding: 0.5em 0.8em;
  margin: 2em;
}

#createTaskStatements > form {
  display: flex;
}

#createTaskStatements > form > * {
  padding: 0.5em;
}

#createTaskStatements > form > input {
  flex: 1;
  margin-right: 1em;
}

#createTaskStatements > form > button {
  padding: 0.5em 0.8em;
  background-color: #B283FF;
  border: none;
  color: white;
}

#createTaskStatements > div {
  display: flex;
}

#createTaskStatements > div > * {
  display: flex;
  padding: 0.5em 0.8em;
  margin: 0.5em 0;
}

#createTaskStatements > div > p {
  flex: 1;
  background-color: #E5E5E5;
  margin-right: 0.5em;
  overflow: auto;
}

#createTaskStatements > div > button {
  background-color: #B283FF;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

#createTaskStatements > hr {
  margin-top: 1em;
}

.taskPage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.taskPage > * {
  width: 35%;
}

.taskPage > h2,h3 {
  color: #B283FF;
  margin-bottom: 0;
}

.taskPage > div > p {
  background-color: #E5E5E5;
  padding: 0.5em 0.8em;
}

.taskListPage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.taskListPage > * {
  width: 35%;
}

.taskListPage > h2 {
  color: #B283FF;
}

.taskListPage button {
  background-color: #B283FF;
  color: white;
  border: none;
  padding: 0.5em 0.8em;
  margin-bottom: 1em;
}

.taskListPage p {
  background-color: #E5E5E5;
  padding: 0.5em 0.8em;
}

.taskListContainer {
  overflow: auto;
  height: 80vh;
}

.loadingIndicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}