/* =============== Default CSS ============ */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body{
    overflow: hidden;
}

a{
    text-decoration: none;
    display: inline-block;
}

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

input[type="text"],input[type="password"]{
    height: 40px;
    width: 100%;
    padding: 5px 15px;
    border: 1px solid #75b586;
    color: #000;
    outline: none;
    border-radius: 5px;
}

.container{
    width: 96%;
    max-width: 1350px;
    margin: 0 auto;
}

.flex{
    display: flex;
}

.flex-between{
    justify-content: space-between;
}

.flex-center{
    justify-content: center;
}

.flex-v-center{
    align-items: center;
}


.button-sm {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    box-shadow: 1px 2px 3px #999;
    cursor: pointer;
}

.button-dark {
    background: #0000008c;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

#main-content{
    background-color: #f8f8f8;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 100px;
}



/*=============== login page ============*/
.left {
    flex-basis: 40%;
    background-color: #75b586;
    height: 100vh;
}

.right {
    flex-basis: 60%;
}

.login-form {
    margin: 0 auto;
    margin-top: 150px;
    width: 50%;
}

.input-wrapper {
    margin-bottom: 10px;
}


.left h1 {
    color: #f8f8f8;
    font-size: 25px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    top: 40%;
}

.user {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
    border: 8px solid #7eaf93;
    border-radius: 100%;
    box-shadow: 1px 2px 6px;
}

.user img{
    width: 100%;
    height: 100%;
}






/* =========== Dashboard Page ========== */
.profile {
    width: 35px;
    height: 35px;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.6);
    border-radius: 100%;
    margin-right: 15px;
}

.profile img {
    width: 100%;
    height: 100%;
}

.icon img {
    width: 100%;
    height: 100%;
}

.icon {
    width: 15px;
    height: 15px;
    display: inline-block;
}

li#profiles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    cursor: pointer;
    position: relative;
}

a#home {
    width: 35px;
    height: 30px;
    padding: 5px;
}

.header-wrapper {
    box-shadow: 1px 2px 8px rgba(0,0,0,0.1);
}

ul#user-menu {
    position: absolute;
    width: 180px;
    top: 100%;
    right: 20%;
    background: white;
    box-shadow: 1px 2px 4px rgba(0,0,0,0.2);
    border-radius: 5px;
    display: none;
    z-index: 999999;
}

ul#user-menu li a {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    color: #606964;
}

ul#user-menu li:hover  a{
    background-color: #606964;
    color:#f8f8f8;
    transition: 0.3s all;
}


h1.main-title {
    font-size: 50px;
    font-weight: 400;
    color: #8cdc51;
    text-align: center;
    margin-top: 200px;
    text-transform: uppercase;
}


/* ======== Tables =======*/

#table {
    padding-top: 18px;
}

#datatable {
    border: 1px solid #eeeeee;
    background-color: white;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.4);
    border-radius: 5px;
}

#datatable_length label, #datatable_filter label{
    color: #999;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    font-weight: 700;
}

#datatable_filter label{
    color: #8cdc51;
}

/* table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
    background-color: rgb(71 82 93 / 75%)!important;
}

tbody tr.odd td:first-child{
    color: #777;
    font-weight: 700;
} */
/* 
tbody tr.odd td{
    color: #fff;
    font-weight: 700;
} */

/* tbody tr td{
    color: #777;
    font-weight: 700;
} */

#datatable_filter input {
    height: 30px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
}

#datatable_filter input:focus{
    border: 1px solid #8cdc51;
}

#datatable_filter {
    margin-bottom: 25px;
}

#datatable_info {
    font-size: 14px;
}

#datatable_paginate a {
    font-size: 14px;
}

#datatable_paginate span a {
    width: 38px;
    height: 30px;
    display: inline-block;
    background: #8cd;
    color: white!important;
    font-weight: 700;
    border: none;
    font-size: 14px!important;
}

/* td{
    text-align: center;
    font-size: 14px;
    color: white;
} */

.image img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.image {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 5px solid #4d90fe82;
    border-radius: 100px;
}


.side {
    position: relative;
}

.side-menu {
    position: absolute;
    background: white;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.3);
    border-radius: 5px;
    width: 270px;
    height: 250px;
    overflow-y: auto;
    padding: 20px;
    text-align: left;
    top: -50px;
    left: 110%;
    display: none;
    z-index: 999999;
}

.side-menu li {
    color: #333;
    margin-bottom: 15px;
}


td a {
    color: #333;
}

td input[type="time"] {
    width: 220px;
    border: 1px solid #8cdc51;
    color: #999;
    height: 30px;
    padding: 5px 10px;
    border-radius: 5px;
    outline: none;
}

#datatable_paginate {
    margin-top: 15px;
}

#datatable_info {
    margin-top: 14px;
}




/* ============== Profile Page ============*/
#error, #success{
    background: #f4433680;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 10px;
}

#success{
    background: #4caf507a!important;
}

#profile{
    margin: 0 auto;
    margin-top: 100px;
    padding: 40px 20px;
    background:#fefefe;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.1);
    border-radius: 5px;
    max-width: 450px;
}

#profile h3{
    margin-bottom: 20px;
}