/* CSS style sheets for the lifter application */
/*This adds the chalkboard font selection */
@import url(https://fonts.googleapis.com/css?family=Walter+Turncoat);
body {
    text-align: left;
    border: 0px solid #34a8eb;
    border: 0px solid black;   
}

h3 {
    text-align: center;
}

/*div {
      max-width: 400px;
      margin: auto;
}*/
/*
.input-icons {
      width: 100%;
      margin-bottom: 10px;
}

.input-icons i {
      position: absolute;
}
.icon {
      padding: 10px;
      min-width: 40px;
 }
 .input-field {
      width: 100%;
      padding: 10px;
      text-align: center;
 }
*/

#category_table {
    border-collapse: collapse;   /*so borders don't get thick */
    padding: 2px;
    color: white;
}

#category_table td, #category_table th {
    border: 1px solid white;
    padding: 2px; 
    text-align: left;
    height: 10px;
    vertical-align: center;
}

.micon {
    font-size: 15px;
}

.box {
    display: grid; /*activates grid layout - better than using float */
    grid-template-columns: 1fr 1fr 1fr; /* 3 columns equal width - fr stands for fraction of the grid */
    column-gap: 10px; /* space between rows and columns */
    background: black;
    border: none;
    /*Make chalkboard style*/
    font-family: "Walter Turncoat", cursive;
    color: white;
}

.col1 {
    width: 100px;
    color: white;
   /* border: 1px solid black; */
}

.bboard {
    background: black;
/*    height: 800px; */
    height: auto;
    width: 1400px;
    /*border: 5px solid white;*/
    border: none;
    /*Make chalkboard style*/
    font-family: "Walter Turncoat", cursive;
    color: white;
}

#record_table {
    border-collapse: collapse;   /*so borders don't get thick */
/*    padding: 2px; */
    color: white;
}

#record_table td, #record_table th {
    border: 1px solid white;
    padding: 2px;
    text-align: left;
    height: 10px;
    vertical-align: center;
}

/* -------------------------------------- */
/*Modal window definitions for admi login */
/* formats the input fields for admin */
input[type=text], input[type=password] {
    width: 100%;
    padding: 3px 3px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.cancelbtn {
    width: 100%;
    padding: 10px 18px;
    color: white;
    background-color: #f44336;
    font-family: "Walter Turncoat", cursive;   
}

.loginbtn {
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    background-color: #04AA6D;
    color: white;
    font-family: "Walter Turncoat", cursive; 
}

container {
    padding: 16px;
}

span.psw {
    float: right;
    padding-top: 16px;
}

.imgcontainer {
    text-align: Left;
    margin: 24px 0 12px 0;
    position: relative;
    font-family: "Walter Turncoat", cursive; 
}

.modal {
    display: none;    /* hidden by default */
    position: fixed;  /* stay in place */
    z-index: 1;       /* sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;  /* enable scroll if needed */
    background-color: black;
    background-color: rgb(0,0,0, 0.4);
    padding-top: 10px;  
}

.modal-content {
    background-color: #fefefe;
    background-color: grey;
    color: white;
    margin: 5% auto 15% auto; /*5% from top 15% from bottom and centered */
    border: 1px solid: #888;
    width: 40%;        /* adjust to screen size */
}

.close {
    /* top right corner outside of modal */
    position: absolute;
    right: 25px;
    top: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: red;
    cursor: pointer;

}

/*add zoom animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)}
    to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

/*change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.psw {
	display: block;
	float: none;
    }
    .cancelbtn {
	width: 100%;
    }
}



