body {
  background-color: #000034;
  font-family: Ubuntu, sans-serif;
  font-size: 14px;
  color: #09175d;
  width: 90%; /* Set all boxes to the same width */
  max-width: 50rem;
  margin-left: auto; /* Align box to the center */
  margin-right: auto; /* Align box to the center */
  display: flex;
  justify-content: center;
}

.background {
  background-color: whitesmoke;
  position: fixed;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 95%;
  height: 100%;
  max-width: 60rem;
  z-index: -1;

  &.header-mask {
    z-index: 0;
  }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */

  /* Modal Content/Box */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    form {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding-top: 0.5rem;
      width: 100%;
    }

    p {
      display: flex;
      flex-direction: row;
      align-items: center;
      margin-top: 0;
      margin-bottom: 0.3rem;
    }

    label {
      width: 150px; /* Adjust the width as needed */
      margin-right: 10px;
    }
    input {
      flex: 1;
    }
  }

  /* The Close Button */
  .close {
    position: absolute;
    top: 0;
    right: 0.5rem;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
}

.header {
  position: fixed;
  width: 90%;
  max-width: 800px;
  color: #d9e2fc;
  border-radius: 5px 5px 0 0;
  text-align: center;
  padding-bottom: 0.5em;
  z-index: 1;

  .login-logout-button {
    position: absolute;
    right: 0.8rem;
    top: 0.5rem;
    cursor: pointer;
    /*font-size: 1.5rem;*/
    color: white;
  }

  .header-buttons {
    background-color: white;
    padding: 0.3rem;
  }
}

.content-container {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  font-size: 14px;
  padding: 1em;
  background-color: #e1e1e1;
  margin-left: 0.2em;
  margin-right: 0.2em;
  width: 100%
}

.btn {
  margin: 5px;
  border-radius: 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
}

.download-btn {
  position: absolute;
  top: 1.3rem;
  left: 50%;
  translate: 8em;
}

.wide-btn {
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 1em;
  margin-right: 1em;
}

.input-error {
  border: #c40808 0.3rem solid;
}

.icon-link {
  text-decoration: none;
  color: inherit;
}