* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
}

.mainContent {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: baseline;
}

#userForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: center;
}

.userInfo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.userInfo label {
  width: 10%;
  border: 1px solid #ccc;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 0.25rem;
}

@media (max-width: 768px) {
  .userInfo label {
    width: 50%;
  }
}

.userInfo img {
  display: block;
  margin: 0 auto 8px;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

button {
  margin-bottom: 10px;
}
.logs-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

table#logs {
  padding: 1rem;
  border: 1px solid black;
  margin: 20px auto;
  width: 50%;
}

table#logs th,
table#logs td {
  padding: 1rem 1rem;
}

form#event-desc-form {
  display: flex;
  flex-direction: column;
}
