body {
    margin: 0;
    background-color: #e8e2ff;
    /*background-image: radial-gradient(circle, green, white, white);*/
    /*background-image: repeating-radial-gradient(red, yellow 10%, green 15%);*/
    width: 100%;
}

.header {
    background: orangered;
    color: white;
    padding: 2px;
}

.headerDiv {
    width: 100%;
    margin-bottom: 56px;
}

#header_logo {
    float: left;
    margin: 5px;
}

#headerTitle {
    text-decoration: none;
    color: yellow;
    font-family: sans-serif;
    font-size: 20px;
}

.server_details {
    text-decoration: none;
    color: white;
    font-size: 14px;
    display: inline;
    float: right;
}

.server_date {
    color: darkgray;
}

.session_msg {
    text-align: left;
    color: red;
}

.manager_head_contents {
    text-align: center;
    font-size: 25px;
    padding: 5px 0px;
}

.wrapper {
    width: auto;
    margin: 0 auto;
}

.manager_wrapper {
}

.content_title {
    text-align: left;
    font-weight: bold;
    font-size: 20px;
}

#alert {
    color: red;
}

.pageTitle {
    text-align: center;
    font-size: 20px;
    color: blueviolet;
}

table {
    background-color: #e8e2ff;
}

th {
    text-align: center;
}

td {
    text-align: center;
}

table input[type="text"], input[type="select"] {
    text-align: center;
}

.dashboard_value {
    color: black;
    text-align: left;
}

.menu_sub_title {
    color: blue;
    border: solid yellow 1px;
    background: white;
    display: inline-block;
    padding: 5px;
    width: 100%;
    text-align: center;
}


/*forgot psw styles*/
.contents {
    padding: 20px;
    margin: 5px;
    border: solid black 1px;
    text-align: center;
}

.logo {
    text-align: center;
    padding: 10px;
}

/* Stackoverflow preview fix, please ignore */
.navbar-nav {
    flex-direction: column;
}

.nav-link {
    padding-right: .5rem !important;
    padding-left: .5rem !important;
}

.navbar-custom {
    background-color: orangered;
    color: white;
}

/* change the brand and text color */
.navbar-custom .navbar-brand {
    color: orangered;
}

.navbar-custom .navbar-text {
    color: yellow;
    font-weight: bold;
}

/* change the link color */
.navbar-custom .navbar-nav .nav-link {
    color: white;
}

.navbar-custom .dropdown-item:active,
.navbar-custom .dropdown-item:focus,
.navbar-custom .dropdown-item:hover,
.navbar-custom .nav-link:active,
.navbar-custom .nav-link:focus,
.navbar-custom .nav-link:hover {
    color: white;
    background-color: orangered;
}

/* Fixes dropdown menus placed on the right side */
.ml-auto .dropdown-menu {
    left: auto !important;
    right: 0px;
}

#session_msg {
    color: orangered;
    margin: 10px;
    text-align: center;
}

.manager_title {
    color: blueviolet;
    text-align: center;
}

.divider {
    height: .5px;
    background-color: orangered;
    width: 100%;
    margin: 10px 0px;
}

.dataForm {
    border: solid 1px orangered;
    background-color: white;
    padding: 12px;
}

.smallUserDetails {
    border: solid 1px orangered;
    background-color: white;
    padding: 5px;
}

.sub_title_content {
    color: darkred;
    text-align: center;
    padding: 10px;
}

.dashItem {
    padding: 5px;
    text-align: left;
}

.dashboard_heading {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color:black;
}

.tableInfo {
    color: blueviolet;
    text-align: center;
}

.grandParentContaniner {
    display: table;
    height: 100%;
    margin: 0 auto;
}

.parentContainer {
    display: table-cell;
    vertical-align: middle;
    min-width: 300px;
  
}

.parentContainer #loginForm {
    text-align: center;
    border: 1px solid green;
    background: white;
    padding: 25px;
    min-width: 350px; 
}


.vegRow {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.vegCol {
    -ms-flex: 20%; /* IE10 */
    flex: 20%;
    max-width: 20%;
    padding: 4px;
    border: black solid 1px;
    text-align: center;
}

.vegCol img {
    margin-top: 5px;
    vertical-align: middle;
    width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .vegCol {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .vegCol {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}