*{
    padding: 0;
    margin: 0;
}
body{
    padding: 0;
    margin: 0;
    /* font-family:'Courier New', Courier, monospace; */
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
.page{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom right, #9abbf5,#72a3f9, #200cd2, #1201a5);
}
.wrapper{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: whitesmoke;
    border: none;
    box-shadow: 1px 1px 7px 1px #333;
}
form{
    width: 80%;
}
.title{
    color: rgb(3, 134, 20);
    font-size: 80px;
    font-weight: bold;
}
.note{
    color: red;
    font-weight: bolder;
    font-size: 18px;
    text-align: center;
}
.nav-bottom{
    text-align: center;
    margin-top: 10px;
}
.loginbtn{
    width: 100%;
    outline: none;
    border: none;
    font-size: 20px;
    color: whitesmoke;
    margin: 10px 0px 10px 0px;
    padding: 10px 0px 10px 0px;
    background-color: rgb(248, 166, 14);
}
.top{
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
    width: 100%;
}

.right{
    width: 100px;
}
.right a{
    border-radius: 20px;
}

a.viewbtn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
    font-size: 20px;
    color: whitesmoke;
    margin: 10px 0px 10px 0px;
    padding: 8px 0px 10px 0px;
    background-color: rgb(5, 145, 3);
}

.loginbtn:hover,.viewbtn:hover{
    opacity: 0.6;
    cursor: pointer;
}

.form-group{
    display: flex;
    flex-direction: column;
    margin: 10px 0px 10px 0px;
}
span.help-block{
    color: red;
    padding-top: 10px;
    font-weight: bolder;
}


input[type=text],input[type=email], input[type=date],input[type=number], input[type=password],select{
  width: 100%;
  /* Padding: top right  bottom left*/
  padding: 10px 0px 10px 10px;
  margin: 0px 0px 0px 0px;
  display: inline-block;
  border: groove;
}




.navbar{
    width: 20%;
    height: 95vh;
    box-shadow: 1px 1px 7px 1px #333;
    display: flex;
    flex-direction: column;
    margin: 10px;
    justify-content: space-between;
}

.side-logo{
    width: 100%;
    height: 10%;
}
.side-logo img{
    width: 100%;
    border-bottom-style: groove;
    padding-bottom: 10px;
}
.side-menus{
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    padding: 20px 0px 0px 0px;
}
.side-menus a{
    padding: 10px 0px 10px 10px;
    text-decoration: none;
    color: black;
    font-size: 16px;
}
a.active{
    color: orange;
    font-weight: bolder;
}
.side-menus a:hover{
    background-color: #333;
    color: whitesmoke;
}
.logout-div{
     display: flex;
    width: 100%;
    height: 6%;
}
.btnLogout{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(247, 69, 69);
    color: whitesmoke;
    text-decoration: none;
    font-weight: bolder;
    font-size: 20px;
}
.btnLogout:hover{
    opacity: 0.6;
}
    /* background-color: rgb(247, 69, 69); */

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    height: 95vh;
    margin: 0px 10px 0px 10px;
    box-shadow: 1px 1px 7px 1px #333;
}
.Dash-Page{
    width: 100%;
    box-shadow: 1px 1px 7px 1px #333;
    height: 100vh;
    display: flex;
    align-items: center;
}

.top-nav{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 3px 1px #dcd8d8;
}

.nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
}
.dash-main-content{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-view{
    width: 30%;
    margin: 20px 0px 20px 0px;
}
.btnAdd{
    width: 100%;
    background-color: green;
    color: whitesmoke;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 15px 0px 15px 0px;
    border-radius: 20px;
}
.btnAdd:hover{
    opacity: 0.6;
}

.bottom-view{
    width: 95%;
}

h3.sub-heading{
    color: orange;
    font-weight: bold;
    font-size: 20px;
}

h4.sub-heading{
    color: orange;
    font-weight: bold;
    font-size: 18px;
}

table{
    width: 100%;
}
table tr th{
    background-color: #333;
    color: whitesmoke;
    padding: 20px 0px 20px 0px;
}
tr td{
    padding: 10px 0px 10px 0px;
    text-align: center;
}
table tr:nth-child(even){
    background-color: #fbf9f9;
    color: black;
}
table tr:nth-child(odd){
    background-color: #b6b3b3;
    color: black;
}
tr td a{
    text-decoration: none;
    color: black;
}
tr td a:hover{
    color: blue;
}




/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 10px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.content-top{
    width: 80%;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 10px 10px 10px 10px #888;
    padding: 20px;
}
.content-bottom{
    width: 90%;
    margin-top: 20px;
}

.modal-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px 5px 10px 5px;
}
.form-row{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.group-form{
    width: 60%;
    margin: 10px 5px 10px 5px;
    padding: 0px 10px 0px 10px;
}
/* The Close Button */
.close {
    color: #aaaaaa;
    display: flex;
    justify-content: flex-end;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#imagepart{
    border: 2px solid black;
    border-radius: 5px;
    padding: 10px;
    width: 30%;
    text-align: center;
}
#previewImg{
    width: 150px;
    height: 150px;
    border-radius: 300px;
}