﻿.SuccessMsg{
    color: green;
}

.ErrMsg{
    color: red;
}

a.active {
    background-color: lightskyblue;
}

.dashboard { 
    float: left; 
    width: 100%;
}
.dashboard .dashboard3col {
    width:100%; 
    float:left;
}
.dashboardCol {
    float:left; 
    width:33%; 
    overflow:hidden; 
    margin:0;
}

.dashboardItem { 
    margin:0 10px 10px 0; 
    border:solid 1px #e7e7e7;
}

.dashboardItemHeader { 
    font-size:1.2em; 
    font-weight:bold; 
    padding:10px 15px; 
    background-color:#dbdbdb;
}

.dashboardItemBody { 
    margin:10px; 
    overflow:hidden;
}
.dashboardFooter {
    clear:both; 
    width:100%; 
    background-color:Red;
}

/* ======== Table ======== */
.tbl { 
    table-layout:auto; 
    border-collapse:collapse; 
    width:100%;
}

.tbl thead th { 
    border-bottom:solid 1px #ededed; 
    background-color:#ededed; 
    padding:5px; 
    text-align:left; 
    color:#9c9c9c; 
    font-size:0.9em; 
    font-weight:normal;
}

.tbl tbody td { 
    border-bottom:solid 1px #ededed; 
    padding:5px; 
    color:#686868; 
    font-size:0.9em
}

td.details-control {
    background: url('../Image/Plus.png') no-repeat center center;
    background-size: 60%;
    cursor: pointer;
}

tr.shown td.details-control {
    background: url('../Image/Minus.png') no-repeat center center;
    background-size: 60%;
}

#btnTopJump{
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 100px; /* Place the button at the bottom of the page */
    right: 10px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: lightgrey; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#btnTopJump:hover{
    background-color: #555; /* Add a dark-grey background on hover */
}
