﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
    background-image: url('/Content/default.png');
    display: flex;
}

/* Layout */
.body-content {
    width: 83%;
}

.container {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    margin: 15px;
}


/* Nav bar styling */
.navbar 
{
    width: 10%;
    height: inherit;
}

.navbar-item {
    padding: 5px;
    padding-left: 5px;
    background-color: #06636a;
    border-radius: 15px;
    padding-left: 5%;
    color: white;
}

.navbar-item a {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.navbar-header {
    padding: 5px;
    padding-left: 5px;
    background-color: #06636a;
    border-radius: 15px;
    padding-left: 5%;
    color: white;
}

.navbar-header a {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

/* Table styling */

table {
    background-color: lightgray;
    border-radius: 15px;
}

tr{

}

tr:nth-child(even)
{
    background-color: white
}

th {
    color: white;
    background-color: #06636a;
    padding: 3px;

}

    th:first-child {
        color: white;
        background-color: #06636a;
        padding: 3px;
        border-top-left-radius: 15px;
    }

    th:last-child {
        color: white;
        background-color: #06636a;
        padding: 3px;
        border-top-right-radius: 15px;
    }

td{
    padding: 5px;
}

/* Content style*/

.splitview{
    display: flex;
}

.form-horizontal{
    margin: 15px;
}

.form-group{
    margin: 5px;
}

.primary{
    width: 70%;
    border-right-width:1px;
    border-right-color:black;
    border-right-style:solid;
}

.labellong {
    width: 200px;
    display: inline-block;
}

.label {
    width: 100px;
    display: inline-block;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}