﻿.dashboard-content ul li{
    list-style-type: none;
    width: 97%;
    height: auto;
    float:left;
    text-align: left;
    cursor:pointer;
    padding: 3px;
    margin: 5px;
}

.dashboardPanel {
    width: calc(32% - 2px);
    height: 30%;
    margin: 0.5%;
    border-radius: 3px;
    border: 1px solid #CCC;
    display:inline-block;
    position:relative;
    float:left;
}

    .dashboardPanel .dashboard-header {
        height: 26px;
        border: 1px solid #CCC;
        padding: 3px 5px 2px 5px;
        background-color: #ddd;
        text-align:center;
    }

    .dashboardPanel .dashboard-content {
        overflow-y:auto;
        height:calc(100% - 31px);
        width:100%;       
    }

.dashboardPanel-error{
    background-color: #f2dede;
}

.dashboardPanel-ok{
    background-color: #dff0d8;
}

.StandardPanel {
    background-color: #f7f7f7;
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
    margin-top: 0;

}

.RoundPanel {
    background-color: #f5f5f5;
    border-radius: 5px;
    border-color: #f5f5f5;
    padding: 0px 6px 0px 25px;
    vertical-align: middle;
}

.RoundRequestPanel {
    border: solid;
    border-color: lightgrey;
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 4px;
    border-bottom-width: 4px;
    border-radius: 5px;
    background-image: url('Images/PanelBackground.png');
    background-position: center;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: 0;
    padding: 5px 5px 5px 5px;
    margin: 5px 5px 5px 5px;
    cursor: pointer;
    position:relative;
}
.RoundRequestPanel.toAdd::after{
    position:absolute;
    content:"";
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:rgba(228, 226, 177, 0.44);
}
    .RoundRequestPanel:hover {
        background-image: none;
        background-color: lightblue;
    }

.StandardHeight {
    height: 100%;
}

.RequestPanel {
    background-image: url('Images/PanelBackground.png');
    background-position: center;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: 0;
    text-align: center;
}

    .RequestPanel table {
        margin: 0 auto;
    }

        .RequestPanel table tr {
            line-height: 30px;
        }

        .RequestPanel table div {
            width: auto;
        }

        .RequestPanel table td:nth-child(1) {
            text-align: left;
        }

        .RequestPanel table td:nth-child(2) {
            text-align: right;
        }

@media screen and (max-height: 750px) {
    .RequestPanel table tr {
        line-height: 15px;
    }
}




.RoundUserPanel {
    border: solid;
    border-color: lightgrey;
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 4px;
    border-bottom-width: 4px;
    border-radius: 20px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    background-image: url('Images/PanelBackground.png');
    background-position: center;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

    .RoundUserPanel:hover {
        background-image: none;
        background-color: lightblue;
    }
