html{
    background: #f7f7f7;
    
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.roboto-slab-<uniquifier> {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}


body {
	font-family: "Roboto", sans-serif;
    background: white;
    margin: 0 auto;
    text-align: center;
	
}

    main {
        /* width: 40%; */
        display: inline-block;
        padding: 10px;
    }

.jst {
    
	  width: 100%;
    border-style: solid;
    border-color: black;
    border-radius: 25px;
    padding: 10px;
    margin: 10px;   
}

.jstprocess {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 10px;
  margin: 10px;   
}

.admin, .jstcheck {

    width: 95%;
    border-style: solid;
	  border-width: 1px;
    border-color: #003366;
    border-radius: 15px;
    padding: 10px;
    margin: 10px;   
}


.button, .scbutton, input[type=submit] {
  font-family: "Roboto", sans-serif;
    background-color: #003366;
	display: inline-block;
	color: white;
    border-radius: 15px;
    padding: 10px;
    margin: 10px;   
}

.scbutton {
  background-color: #CE1126;
}


header, footer {
    background: #003366;
    color: white;
    padding: 20px 10px
    
}

.headertitle {
  display: block;
  text-align:center;
  
 }

header {
	font-family: "Roboto Slab", serif;
}



footer {
    text-align: right;
}


ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    line-height: 30px;
}

a {
    text-decoration: none;
    color: inherit;
}

.jst_link {
  /* Your styles here */
  text-decoration: underline; /* Example text decoration */
}
/* a:hover {
    color: #0e69e9;
} */


header h1 {
    display: inline-block;

}

header h1 {
    width: 100%;
}

/* JST Check in form */ 

textarea {
  width: 90%;
  height: 300px;
}

.offline_text {
  display: flex;
  align-items: top;
  
}

main {
	width: 90%;
}

form > div {
    padding: 10px 0;
}

.inline label {
    display: inline-block;
    width: 150px;
}

.checkbox label {
    display: inline-block;
	
    width: 90%;
}

input[type="text"], select, input[type="email"], input[type="password"] {
    display: inline-block;
    padding: 10px;
    width: 90%;
} 

table {
  width: 90%;
  
}

table, th, td {
  border-collapse: collapse;
  border: 1px solid;
  padding: 10px;
  border-color: #003366;
  border-left: none;
  border-right: none;
  border-top: none;
}



/* Menu CSS */

nav{
  background-color: #CE1126;

  
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: 50px;
  color: white;
}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: white;
  font-weight: 800;
}
nav a:hover{
  background-color: #f0f0f0;
  color: Black;
}
nav li:first-child{
  margin-right: auto;
}
.sidebar{
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}



@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
 

}
@media(max-width: 400px){
  .sidebar{
    width: 100%;
  }
}

@media (min-width: 800px) {
 
.jst {
	display: inline-block;
    width: 43%;
}
	
.headertitle {
  display: flex;
  align-items: center;
  text-align:left;
  width: 100%;
 }

 textarea {
  width: 400px;
  height: 150px;
}

.admin {
  width: 100%;
}
}


 
 body {
	text-align: left;
}

@media (min-width: 1000px) {

    
    main {
        /* width: 40%; */
        display: inline-block;
        padding: 10px;
    }


/* JST Check in form */ 


form {
    padding: 10px;
    margin: 10px 0;
    width: 600px;
}

form > div {
    margin: 10px 0;
}

.inline label {
    display: inline-block;
    width: 150px;
}

.checkbox label {
    display: inline-block;
    width: 90%;
}

input[type="text"], select, input[type="email"], input[type="password"] {
    display: inline-block;
    padding: 10px;
    width: 400px;
}   `

}

@media (min-width: 1200px) {
    body {
        max-width: 80vw;
    }
}




/* Flex CSS */


/* Checkbox Slider */
.switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.switch input {
  display:none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 26px;
}

input:checked + .slider {
  background-color: #003366;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

div span {
  position: absolute;
  margin-left: 10px;
}