﻿body {
    margin: 50px;
}



.pageContent {
    padding: 20px;
}

.form-inline
{
    padding-bottom:3px;
}

.form-group .control-label {
    width: 200px;
}


.form-group .form-control {
    clear: both;
    width: 300px;
}

.form-group .values-table {
    margin: 0px;
    display: table !important;
}

.form-group select {
    clear: both;
    width: 305px;
}
/*top menu*/
.menuSection {
    margin: 0;
    padding: 0;
}

nav {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.menuSection ul {
    overflow: auto;
    list-style-type: none;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}

.menuSection li {
    float: left;
    margin-right: 0px;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 20px;
    padding-right: 20px;
}

    .menuSection li:last-child {
        border-right: none;
    }

    .menuSection li a {
        text-decoration: none;
        color: gray;
        text-transform: uppercase;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

        .menuSection li a:hover {
            color: darkblue;
        }

li.active a {
    font-weight: bold;
    color: #333;
    text-decoration-line: underline;
}

/*top menu end*/

/*page styles*/
.text-success {
    color: green;
    font-weight: bold;
}

.text-error {
    color: red;
    font-weight: bold;
}

h2 {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 1px solid black;
    margin-bottom: 30px;
}

.disabledText {
    color: gray;
}


.form-group {
    margin-top: 10px;
    width: 100%;
    display: flex;
    /*justify-content: space-between;*/
    flex-wrap: wrap;
}

.text-danger {
    color: red;
}


.form-buttons {
    margin-top: 40px;
}

.btn {
    margin-left: 10px;
}

dl.dl-horizontal {
    margin-top: 10px;
    width: 100%;
    flex-wrap: wrap;
}

    dl.dl-horizontal dd {
        width: 140px;
        text-align: right;
        margin-right: 20px;
    }

    dl.dl-horizontal dt {
        width: 150px;
        text-align: left;
        margin-right: 20px;
    }


.main-table {
    border-collapse: collapse;
    margin-top:10px;
}

    .main-table th {
        white-space: nowrap;
        border-left: 1px solid silver;
        border-top: 1px solid silver;
        border-bottom: 1px solid silver;
        border-right: 1px solid silver;
        padding: 3px !important;
        background-color: aliceblue;
        text-align: left;
        cursor: pointer;
    }

        .main-table th span .sort-icon {
            font-size: 9px;
            margin-left: -2px;
        }

    .main-table td {
        white-space: nowrap;
        border-left: 1px solid silver;
        border-top: 1px solid silver;
        border-bottom: 1px solid silver;
        border-right: 1px solid silver;

        padding-left: 3px !important;
        padding-top: 1px !important;
        padding-right: 3px !important;
        padding-bottom: 1px !important;
        text-align: left;
        font-size: 0.8rem;
    }


.pagination li:first-child {
    border-left: 1px solid #d0d0d06e;
}

.pagination li {
    /*width: 25px;
    height: 28px;
    padding-left: 8px;*/
    /*padding-bottom: 5px !important;*/
    padding: 0.25rem 0.5rem;
    border-top: 1px solid #d0d0d06e;
    border-bottom: 1px solid #d0d0d06e;
    border-right: 1px solid #d0d0d06e;
}



.glyphicon {
    font-size: 18px;
    position: relative;
    top: 1px;
    display: inline-block;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-chevron-up:before {
    content: "\2191";
}

.glyphicon-chevron-down:before {
    content: "\2193";
}
/*page styles*/

/* Style the buttons that are used to open and close the accordion panel */
.accordion-header {
    margin-bottom: 0px;
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 7px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

    /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
    .active, .accordion-header:hover {
        background-color: #ccc;
    }

/* Style the accordion panel. Note: hidden by default */
.accordion-panel {
    color: #444;
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 15px;
    background-color: white;
    display: none;
    overflow: hidden;
} 

