#user-manager {
  font-weight: bold;
  font-size: large;
  margin-bottom: 10px;
}

#user-manager:hover {
  color: var(--hover-white);
  cursor: pointer;
  font-weight: bolder;
}

#user-manager > hr {
  border-top: 1px solid var(--sub-text-color);
}

.user-modal-container {
  position: absolute;
  background-color: var(--dashboard-base-transparent);
  width: 100vw;
  height: 100vh;
  z-index: 20;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.user-modal-container.hidden {
  display: none;
}

.user-modal-main {
  background-color: var(--hover-white);
  color: var(--background-base);

  width: 60vw;
  height: 60vh;
  border-radius: var(--border-radius);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width:680px) {
  .user-modal-main {
    width: 100vw;
    height: 100vh;
  }
}

.content-header {
  width: 100%;
  height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: larger;
  box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.content-body {
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  box-shadow: inset 0px -2px 2px 1px rgba(0, 0, 0, 0.2);
  padding: 20px;
  overflow-y: auto;
}

.content-footer {
  width: 100%;
  padding: 10px;
  font-weight: bold;
  font-size: larger;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 10px;
  flex-shrink: 0;
}

.close-tab{
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 5px;
  right: 10px;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  user-select: none;
}

.close-tab:hover {
  border-width: 1px;
  border-style: solid;
  border-color: gray;
  box-shadow: 2px 2px 2px 1px gray;
}

.content-body input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
}

.confirm-button {
  background-color: var(--confirm-color, rgb(191, 241, 209));
  border-radius: var(--border-radius);
}

.secondary-button {
  background-color: var(--neutral-color, --hover-white);
  border-radius: var(--border-radius);
}