table{
  text-align: center;
}
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ff9e00;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.diagram{
  display: block;
}
.mainContainer{
  position: relative;
  text-align: center;
  min-height: 100vh;
  margin-top: 100px;
}
.medium_heading{
    font-size: 40px;
    font-weight: bold;
    color: #545455;
    font-family: "Consolas", "Menlo", "Courier", monospace;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.smallHeading{
    font-size: 20px;
    font-weight: bold;
    color: #545455;
    font-family: "Consolas", "Menlo", "Courier", monospace;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.textblock{
  width: 80%;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
}
.textTableContainer{
  overflow-y: auto;
}
.textTableContainer table{
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #545455;
  border-collapse: collapse;
  max-width: 95vw;

}
.textTableContainer th{
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #545455;
  border-collapse: collapse;
  max-width: 95vw;

}
.textTableContainer td{
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #545455;
  border-collapse: collapse;
  max-width: 95vw;

}
.textTableContainer td{
  padding: 5px;
}
.section_begin{
    margin-top: 30px;
}
.reference{
    font-size: 20px;
    text-decoration: none;
    color: #ff9e00;
    font-weight: bold;
    cursor: pointer;
}
.text{
    color: #545455;
    font-size: 20px;
    font-family: "Consolas", "Menlo", "Courier", monospace;
}
.tableHeadText{
  color: #545455;
  font-size: 20px;
  font-family: "Consolas", "Menlo", "Courier", monospace;
}
.smallText{
    color: #545455;
    font-size: 15px;
    font-family: "Consolas", "Menlo", "Courier", monospace;
}
.mediumText{
  color: #545455;
  font-size: 20px;
  font-family: "Consolas", "Menlo", "Courier", monospace;
}
.sameRow{
  display: block;
}
.input_description{

  color: #545455;
  font-size: 40px;
}
.select_input{
  height: 40px;
  width: 200px;
}
.date_input{
  height: 40px;
  font-size: 30px;
}
.phrase_input{
  margin-top: 50px;
  font-size: 20px;
  height: 10vh;
  min-height: 200px;
  width: 100%;
  color: #545455;
  outline: None;
}
.like,
.dislike {
  display: inline-block;
  cursor: pointer;
  margin: 10px;
}
.liked{
  display: inline-block;
  cursor: pointer;
  margin: 10px;
  color: #9CFF56;
}
.disliked{
  display: inline-block;
  cursor: pointer;
  margin: 10px;
  color: #FF370F;
}

.dislike:hover,
.like:hover {
  color: #2EBDD1;
  transition: all .2s ease-in-out;
  transform: scale(1.1);
}
.button{
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}
.save_button{
  width: 100%;
  height: 50px;
  margin-bottom: 50px;
}
.submit_button{
  font-family: "Consolas", "Menlo", "Courier", monospace;
  height: 60px;
  min-width: 20%;
  margin: auto;
  margin-top: 3%;
  background-color: #4CAF50;
  opacity: 0.8;
  border: none;
  outline: none;
  font-weight: bold;
  margin-top: 3%;
  cursor: pointer;
  color: #ffffff;
  font-size: 20px;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}
.unsubscribe_button{
  height: 60px;
  min-width: 20%;
  margin: auto;
  margin-top: 3%;
  background-color: #FF370F;
  opacity: 0.8;
  border: none;
  outline: none;
  margin-top: 3%;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  font-size: 20px;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}
.captcha{
    margin-top: 30px;
    display: block;
    width: 90%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    animation-name: fade;
  animation-duration: 4s;
}
.captcha_text{
  display: block;
  margin-top: 50px;
  color: #545455;
}
.left{
  text-align: left;
}
.center{
  text-align: center;
}
.Form{
  border: solid;
  border-color:  #545455;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  margin-top: 50px;
}
.section{
  width:100%;
}
/*Inputs*/
.nameField{
  color: #545455;
  font-family: "Consolas", "Menlo", "Courier", monospace;
  height: 40px;
  font-size: 20px;
  width: 300px;
  text-align: center;
  margin-top: 10px;
  border-style:solid;
}
.mediumNumberField{
  color: #545455;
  font-family: "Consolas", "Menlo", "Courier", monospace;
  height: 40px;
  font-size: 20px;
  margin-left: 20px;
  width: 120px;
  text-align: center;
  margin-top: 10px;
  border-style:solid;

}
.shortNumberField{
  color: #545455;
  font-family: "Consolas", "Menlo", "Courier", monospace;
  height: 40px;
  font-size: 20px;
  margin-left: 20px;
  width: 60px;
  text-align: center;
  margin-top: 10px;
  border-style:solid;

}
.submit-button{
  color: #545455;
  font-family: "Consolas", "Menlo", "Courier", monospace;
  height: 40px;
  font-size: 20px;
  margin-left: 20px;
  width: 100px;
  text-align: center;
  margin-top: 10px;
  border-style:solid;
}
.longNumberField{
  color: #545455;
  font-family: "Consolas", "Menlo", "Courier", monospace;
  height: 40px;
  font-size: 20px;
  margin-left: 20px;
  width: 200px;
  text-align: center;
  margin-top: 10px;
  border-style:solid
}
.timeField{
  display: inline-block;
  margin-left: 20px;
  border-style:solid

}
.timeInput{
  font-family: "Consolas", "Menlo", "Courier", monospace;
  height: 40px;
  font-size: 20px;
  margin-left: 20px;
  border-style:solid
}
.checkboxInput{
  margin-left: 20px;
  border-style:solid
}
/* colors*/
.yellow{
  background-color: #ff9e00;
}
.icon{
  margin-left: auto;
  margin-right: auto;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.kpi_row {
  display: flex;
  justify-content: space-around;
  background-color: #ffffff;
  padding: 10px;
  margin-bottom: 20px;
}

.kpi_tile {
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  margin: 0 10px;
}

.kpi_label {
  font-family: "Consolas", "Menlo", "Courier", monospace;
  font-size: 16px;
  color: #333;
}

.kpi_value {
  font-family: "Consolas", "Menlo", "Courier", monospace;
  font-size: 24px;
  font-weight: bold;
  color: #ff9e00;
  margin-top: 5px;
}
@media only screen and (max-width: 550px) {
  .tableHeadText{
    font-size: 15px;
  }
  .Form{
    width: 95%;
  }
  .nameField{
    text-align: center;
    width: 92%;
  }
  .shortNumberField{
    text-align: center;
    margin-left: 10px;
  }
  .mediumNumberField{
    text-align: center;
    margin-left: 10px;
  }
  .longNumberField{
    width: 92%;
  }
  .textblock{
    font-size: 15px;
  }

}

