﻿body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#MainSection {
    position: relative;
  /*  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
}
#AccountButtonPanel {
    position: absolute;
    top: 10px;
    right: 10px;
}

/*.section {
    background: white;
    padding: 25px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}*/
/*
    Validtion error styles
*/
.validation-summary-valid {
    display: none;
}

.validation-summary-errors {
    border: 2px solid crimson;
    border-radius: 3px;
}


    .validation-summary-errors span {
        padding: 5px;
        display: block;
        color: white;
        font-weight: bold;
        background-color: crimson;
    }

    .validation-summary-errors ul {
        line-height: 18px;
        padding-left: 30px;
    }

        .validation-summary-errors ul li {
            margin: 10px 0;
        }


        .field-validation-error {
            color: crimson;
            font-size: .8em;
        }

.api-method {
    border-radius: 3px;
    padding: 5px;
    width: 75px;
    font-weight: bold;
    margin-right: 20px;
    text-align: center;
    color: white;
}
.api-method-post {
    background-color: #528820;
}
.api-method-get {
    background-color: DodgerBlue;
}
.api-method-put {
    background-color: darkorange;
}
.api-method-delete {
    background-color: crimson;
}
.api-result {
/*    background: rgba(255, 255, 255, .1);
    border-width: 1px;
    border-style: solid;
    border-color: #666666;*/
    max-height: 500px;
    overflow: auto;
}
/*    .api-result.error {
        background: rgba(255, 0, 0, .1);
        border-color: rgba(255, 0, 0, .25);
    }
    .api-result.success {
        background: rgba(0, 255, 0, .1);
        border-color: rgba(0, 255, 0, .25);
    }*/
    .top-20 {
        top: 20px;
    }
    .right-75 {
        right: 75px;
    }