/* Author: Nick Minnard */
/* Developed Oct 2021 - Feb 2022 */


/* General */

body {
  background: rgb(217, 218, 219);
  cursor: default;
  font-family: "Noto Sans";
  font-size: 16px;
  margin: 0;
}

hr {
  border-style: dashed none none;
  border-color: white;
  border-width: 7px;
  width: 100%;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* Navigation Bar */

#nav-bar {
  background-color: rgb(24, 78, 139);
  text-align: center;
  height: 100%;
  padding: 1%;
  position: fixed;
  width: 20%;
}

.nav-bar-header {
  color: rgb(255, 255, 255);
  margin: 0;
}

.nav-bar-text {
  line-height: 150%;
  color: rgb(255, 255, 255);
}

#download-link:hover {
  background-color: rgb(86, 199, 202);
}

#fileToLoad {
  position: relative;
  left: 27.5%;
}

/* Main Page General */

#body {
  background-color: rgb(216, 230, 250);
  left: 22%;
  margin: 0;
  position: absolute;
  width: 78%;
}

#main-header {
  color: rgb(61, 181, 186);
  margin: 1%;
  text-align: center;
}

/* Section/Point */

.main-section {
  font-size: xx-large;
  margin: 3% 0 1%;
  text-align: center;
}

.point {
  display: block;
  position: relative;
  text-align: left;
}

.btn {
  background: transparent;
  border: 2px solid transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  word-wrap: break-word;
}

.btn:active {
  position: relative;
  top: 3px;
}

.hover-btn {
  background: #5ef2ff;
  background-image: -webkit-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: -moz-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: -ms-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: -o-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: linear-gradient(to bottom, #5ef2ff, #1ebbcc);
  border: 2px solid black;
  border-radius: 5px;
}

.input {
  border-radius: 5px;
  display: flexbox;
  font-weight: normal;
  padding: 1px 1px 1px 5%;
  overflow:auto;
  resize: vertical;
}

.tier-1 {
  font-size: x-large;
  width: 92%;
  left: 2%;
}

.tier-1-5 {
  font-size: x-large;
  width: 89%;
  left: 5%;
}

.tier-1-5-override {
  width: 92%;
  left: 2%;
}

.tier-2 {
  font-size: large;
  width: 86%;
  left: 8%;
}

.tier-3 {
  font-size: large;
  width: 82%;
  left: 12%;
}

.tier-4 {
  font-size: medium;
  width: 78%;
  left: 16%;
}

.tier-5 {
  font-size: medium;
  width: 74%;
  left: 20%;
}

.selected {
  color: rgb(0, 185, 185);
}

/* Modal Windows */

#modal {
  background-color: rgba(0,0,0,0.4);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1;
}

.modal-content {
  background-color: rgb(255, 255, 255);
  border: 5px solid black;
  border-radius: 10px;
  max-height: calc(100vh);
  overflow-y: auto;
  width: 50%;
  left: 0%;
  top: 5%;
  position: relative;
}

#help-content {
  background-color: rgb(255, 255, 255);
  border: 5px solid black;
  border-radius: 10px;
  max-height: calc(100vh);
  overflow-y: auto;
  width: 25%;
  top: 5%;
  left: 0;
  margin: 0 1%;
  position: relative;
}

#info-content {
  background-color: rgb(255, 255, 255);
  border: 5px solid black;
  border-radius: 10px;
  display: none;
  max-height: calc(100vh);
  overflow-y: auto;
  width: 50%;
  left: 25%;
  top: 5%;
  position: relative;
}

.info-modal-text {
  font-weight: normal;
  margin: 0 5%;
}

.modal-box {
  align-self: center;
  border: 3px solid black;
  border-radius: 5px;
  margin: auto;
  outline: none;
  width: 85%;
}

.modal-button {
  background: #5ef2ff;
  background-image: -webkit-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: -moz-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: -ms-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: -o-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: linear-gradient(to bottom, #5ef2ff, #1ebbcc);
  border: 2px solid black;
  border-radius: 5px;
  font-weight: inherit;
  margin: 2%;
  padding: 1%;
  position: relative;
}

#m-delete {
  background: #dbb044;
  background-image: -webkit-linear-gradient(top, #dbb044, #ff5e5e);
  background-image: -moz-linear-gradient(top, #dbb044, #ff5e5e);
  background-image: -ms-linear-gradient(top, #dbb044, #ff5e5e);
  background-image: -o-linear-gradient(top, #dbb044, #ff5e5e);
  background-image: linear-gradient(to bottom, #dbb044, #ff5e5e);
}

.modal-button:active {
  top: 3px;
}

.modal-button:hover {
  background: #5ef2ff;
  background-image: -webkit-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: -moz-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: -ms-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: -o-linear-gradient(top, #5ef2ff, #1ebbcc);
  background-image: linear-gradient(to bottom, #5ef2ff, #1ebbcc);
  border: 2px solid black;
  border-radius: 5px;
}

.modal-button-text {
  margin: 0;
}
