html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img{
    max-width: 100%;
    height: auto;
}
*,*::before,*::after{
box-sizing: border-box;
}





/* menu start */

.header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    background-color: #506274;
    padding: 10px;
    box-shadow: 0px 0px 12px #6f6f6f4a;
    align-items: center;
}
.header .logo{
    width: 30px;
}
.header .menu a{
    font-size: 14px;
    border-radius: 10px;
    color:#cecece;
    text-decoration: none;
    padding: 10px 20px;
}
.menu a:hover{
    color:#ffffff;
    border-radius: 10px;
    transition: all 0.3s;
}
.header .menu .active{
    color:white;
    font-weight: bolder;
}
.logout a{
    background-color: #b1c0cc;
    border:none;
    color:  #506274;
    border-radius: 5px;
    font-weight: bold;
    padding:5px 10px;
    text-decoration: none;
    margin: 80px 0px;
}
.logout a:hover{
    color:  rgb(58, 65, 70);
    background-color: #f5f6f7;
    transition: all 0.2s;
}

/* menu end */


table{
    margin-top: 120px;
    margin:0 auto;
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 60%;
    margin-bottom: 60px;
  }
  
td, th {
    border: 1px solid #7cb5ec;
    text-align: left;
    padding: 8px;
    font-size: 12px;
}
tr:nth-child(even) {
    background-color: #7cb5ec;
}
.line1,.line2,.line3,.line4,.line5{
      width:60%;
      height: 4px;
      align-items: center;
      margin-top: 2px;
}
.highcharts-credits{
      display:none;
}

.calender,.calender_box{
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin:16px 0px;
}
.line0{
    width: 28px;
    height: 2px;
    background-color: #444a4f;
    margin:0px 12px;
}

.calender .submit_btn{
    background-color: white;
    border:1px solid  #444a4f;
    color:  #444a4f;
    border-radius: 5px;
    font-weight: bold;
    padding:2px 10px;
}
.calender .submit_btn:hover{
background-color: #57a4e2;
border:1px solid  #57a4e2;
color:white;
}


/* login start */

.login{
    margin:0 auto;
    margin-top: 10%;
    width: 45%;
    text-align: center;
    padding: 5% 5%;
    box-shadow: 0px 0px 12px #444a4f31;
    border-radius: 8%;
}
.login h2{
    font-weight: bold;
    margin-bottom: 10%;
}
.login_box{
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;

}
.login label{
    width: 20%;
    text-align: left;
    margin: 0px 40px;
} 
.login_fail{
    color:rgb(213, 80, 80);
    font-size: 12px;
    
}
.login button{
    background-color: rgb(133, 141, 174);
    border: 1px solid rgb(133, 141, 174);
}
.login button:hover{
    background-color: rgb(35, 50, 131);
    border: 1px solid rgb(35, 50, 131);
}

/* login end */
@media (max-width: 1200px){
    table{
        width: 80%;
    }
}
@media (max-width: 992px){
    table{
        width: 90%;
    }
}
@media (max-width: 768px){
    table{
        width: 100%;
    }
}
@media (max-width: 992px){
    .login_box{
        flex-direction: column;
    }
    .login label{
        margin:0px;
    }
    .menu a{
        font-size: 24px;
    }
}
@media (max-width: 522px){
    .calender_box{
        display: flex;
        flex-direction: column;
    }
    .calender_box input{
        margin:10px 0px;
    }
    .header{
        flex-direction: column;
    }
    .logout{
        margin:10px;
    }
    .header .menu a{
        display: block;
        font-size: 20px;
        text-align: center;
    }
}

/* 404 start */

.server_unfound{
    margin:0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3%;
}
.server_unfound h1{
    font-size: 60px;
    margin-bottom:25px;
}
.server_unfound h2{
    font-size: 20px;
    font-weight: bold;
}
.server_unfound img{
    width: 420px;
}
/* 404 end */