*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
   background: #00b4fc; /* #8db8f7; /*#74b9ff;  #50688c;*/
   display: flex;
   display: -webkit-flex;
   align-items: center;
   justify-content: center;
   -webkit-justify-content: center;
   -webkit-align-items: center;
   font-family: "PT Sans", Arial, sans-serif;
   height: 98vh;
 }

.container {
   width: 60%;
   margin: 0 auto;
   background-color: #005bc5; /*#6d8dbd;*/
   color: white;
   padding: 1.5em;
   border-radius: 25px;
}

/* navbar styling */

a {
   text-decoration: none;
}

ul {
   list-style-type: none;
   margin: 0;
   padding: 0;
}

li {
   display: inline;
}

li a {
   text-align: left;
   text-decoration: none;
   color: #21252d;
   font-size: 1em;
}

.container ul {
  display: flex;
}

.container ul li {
  padding: 0.8em;
  margin-left: 1em;
  border-radius: 1em;
  background: #51ffc2;
}

/* base.html */

.content {
   text-align: center;
}

.content header {
   font-size: 2em;
   font-weight: 800;
   background: #17f9ff;
   background-clip: text;
   -webkit-background-clip: text;
   color: transparent;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.content h1 {
   margin-block-start: 1rem !important;
   margin-block-end: 1rem !important;
}

.content div h1 {
   font-size: 1.5em;
}

/* home.html */

.content p {
   font-size: 1.2em;
   line-height: 1.75em;
   margin-block-start: 1rem !important;
   margin-block-end: 1rem !important;
}

/* upload_data.html */

.instructions p {
   font-size: 1.05em;
   line-height: 2.25em;
   margin-block-start: 1rem !important;
   margin-block-end: 1rem !important;
}

.inputform form {
   margin-top: 1.5em;
}

input:is([type="button"], [type="submit"]), input[type="file"]::file-selector-button, button {
   font-weight: bold;
   font-size: 13px;
   /*width: 150px;*/
   padding: 1em;
   border-radius: 1em;
   border-width: 0;
}

input:is([type="file"]) {
   margin-right: 10em;
}

input:is([type="button"]), input[type="file"]::file-selector-button, button {
   background-color: white;
   cursor: pointer; 
   font-size: 1.15em;
}

input:is([type="submit"]), button {
   -webkit-box-shadow: 0px 0px 14px 3px rgba(255,202,210,0.35);
   box-shadow: 0px 0px 14px 3px rgba(255,202,210,0.35);
   background: #012677; /*#55efc4; #00ff95;*/
   color: white;
   cursor: pointer;
   font-size: 1.15em;
}

/* description.html */

table {
   border-collapse: collapse;
   width: 100%;
}

th, td {
   padding: 1em;
}

.information {
   overflow: scroll;
   height: 60vh;
}

#code {
   margin: auto;
   /*width: 60%;*/
   text-align: left !important;
   background-color: #012677; /*#1b1f25;*/
   padding: 1em;
   border-radius: 1.5em;
}

/* actions.html */

.action a {
   display: inline-block;
   padding: 0.5em;
   font-weight: bold;
   border-radius: 1em;
   background: #012677; /* #00b894; #00ff95;*/ 
   color: white;
   width: 20%;
   -webkit-box-shadow: 0px 0px 14px 3px rgba(255,202,210,0.35);
  box-shadow: 0px 0px 14px 3px rgba(255,202,210,0.35);
  line-height: 2.25em;
  font-size: 1.15em;
}

.action button {
   margin-top: 1.5rem;
}

.next-actions {
  display: grid;
  grid-template-columns: repeat(3, auto);
  margin-top: 2em;
  height: 65vh;
  overflow: scroll;
}

.card {
  border-radius: 1.5em;
  background-color:#1b1f25;
  padding: 1em;
  margin: 1em;
  position: relative;
}

.card form {
  position: absolute;
  bottom: 0;
  width: 90%;
  margin-bottom: 1.7rem;
}

.card p {
  margin-bottom: 5em !important;
}

/* select_training_ratio.html */
.card>.p-form {
   margin-bottom: 0 !important;
}

.form-training-ratio {
   position: relative !important;
   width: 100% !important;
}

input[type='range'] {
   overflow: hidden;
   -webkit-appearance: none;
   background-color: #9a905d;
 }
 
 input[type='range']::-webkit-slider-runnable-track {
   height: 20px;
   -webkit-appearance: none;
   color: #13bba4;
   margin-top: -1px;
 }
 
 input[type='range']::-webkit-slider-thumb {
   width: 10px;
   -webkit-appearance: none;
   height: 20px;
   cursor: pointer;
   background: #434343;
   box-shadow: -80px 0 0 80px #51ffc2;
 }

/* login_page */

.login_page{
   justify-content: space-evenly;
   width: 100%;
}

/** FF*/
input[type="range"]::-moz-range-progress {
background-color: #51ffc2; 
}
input[type="range"]::-moz-range-track {  
background-color: #9a905d;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
background-color: #43e5f7; 
}
input[type="range"]::-ms-fill-upper {  
background-color: #9a905d;
}
