body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header {
  display: flex;
  background-color: darkgreen;
  min-height: 12vh;
  padding: 0 10px;
  width: 100%;
}

header h1 {
  color: white;
  font-weight: bold;
  margin-left: 100px;
}

header img {
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
}

main {
  display: flex;
  flex-direction: row;
  min-height: 0;
  min-width: 0;
}

.left {
  display: flex;
  flex-direction: column;
  width: 200px;
  padding: 30px 10px;
  box-sizing: border-box;
  overflow-y: auto;
}

.right {
  display: flex;
  flex-direction: column;
  width: 20%;
  padding: 30px 10px;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: auto;
  font-size: 0.6em;
}

main .center {
  width: 60%;
  padding: 0px 10px;
}

main .center .form-container {
  display: flex;
  flex-direction: column;
  width: 600px;
  margin: 0px 0px 10px 10px;
  padding: 0px 0px 10px 10px;
}

main .center .form-container .form-row {
  display: flex;
  flex-direction: row;
  background-color: white;
  color: black;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 10px 10px 10px 10px;
  font-size: 16px;
  box-sizing: border-box;
  padding: 10px 10px 10px 10px;
  line-height: 1;
  align-items: center;
}

main .center .form-container .form-brow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: white;
  color: black;
  gap: 1em;
  flex-wrap: wrap;
  box-sizing: border-box;
  line-height: 1;
  align-items: center;
  height: 30px;
  width: 100%;
  padding-right: 50px;
}

main .center .form-container .form-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  text-align: right;
  padding-right: 50px;
}

main .center .form-container .form-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  text-align: right;
}

main .center .form-container .form-brow .text-button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

main .center .form-container .button-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

main .center .form-container .button-container input {
  justify-content: flex-start;
  margin: 0px 0px 10px 10px;
  width: 150px;
  height: 30px;
  font-size: 16px;
  box-sizing: border-box;
  padding: 0 12px;
  line-height: 1;
}

footer {
  background-color: darkgreen;
  height: 30px;
  width: 100%;
  text-align: right;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px;
  padding-right: 10px;
  position: fixed;
  bottom: 0;
  line-height: 30px;
  font-size: 1em;
  flex-shrink: 0;
  color: white;
  font-weight: bold;
}

footer a {
  color: darkgreen;
  text-decoration: none;
}

.smallComment {
  font-size: 13px;
}

hr {
  width: 600px;
  margin-left: 0;
  margin-right: auto;
}

.alertt {
  font-size: 20px;
  color: red;
  font-weight: bold;
}

.alertd {
  font-size: 15px;
  color: red;
  font-weight: bold;
}

.clickable-span {
  display: inline-block;
  padding: 3px 6px;
  cursor: pointer;
  color: #007bff;
  text-decoration: underline;
}

.click-link {
  display: inline-block;
  padding: 3px 6px;
  cursor: pointer;
  color: #007bff;
  text-decoration: underline;
}

.link-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}
