/*
 * Base structure
 * Move down content because we have a fixed navbar that is 50px tall
 */
body {
    background-color: #fff;
    padding-top: 50px;
}

/*
 * Global add-ons
 */
.sub-header {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar-fixed-top {
    border: 0;
    background-color: #eee;
    border-bottom: 1px groove #fff;
}

a.navbar-brand.koralia-logo {
    font-family: 'Bilbo', cursive;
    font-size: 3.5em;
    color: #DD786C;
    text-decoration: underline;
}

ul.nav.navbar-nav.navbar-right {
    margin-right: 0;
}

ul.navbar-right > li {
    color: #777;
    font-size: 18px;
    line-height: 20px;
}

ul.navbar-right > li.headline {
    padding: 15px;
}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
	color: #DD786C;
    font-weight: bold;
	background-color: transparent;
}

/*
 * Sidebar
 * Hide for mobile, show later
 */
.sidebar {
    display: none;
}

@media (min-width: 768px) {
    .sidebar {
        position: fixed;
        top: 51px;
        bottom: 0;
        left: 0;
        z-index: 1000;
        display: block;
        padding: 0 20px;
        overflow-x: hidden;
        overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
        background-color: #eee;
        border-right: 1px groove #fff;
        -webkit-box-shadow: 1px 1px 2px #eee;
        -moz-box-shadow: 1px 1px 2px #eee;
        box-shadow: 1px 1px 2px #eee;
    }
}

/* Sidebar navigation */
.nav-sidebar {
    margin-right: -21px; /* 20px padding + 1px border */
    margin-bottom: 20px;
    margin-left: -20px;
    font-family: "Calibri", sans-serif;
}

.nav-sidebar > li {
    border-bottom: 1px groove #eee;
}

.nav-sidebar > li > a {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 22px;
    color: #555555;
}

.nav-sidebar > li.group {
    background-color: #333;
    color: white;
    padding: 4px 4px 4px 15px;
}

.nav-sidebar > li.group h4{
    font-size: 21px;
}

.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
    color: #eee;
    background-color: #428bca;
    font-weight: bold;
}

/*
 * Main content
 */
.main {
    min-height: 800px;
    padding: 20px;
}

@media (min-width: 768px) {
    .main {
        padding-right: 40px;
        padding-left: 40px;
    }
}

.main .page-header {
    margin-top: 0;
}

table {
    background-color: white;
}

/*
 * Placeholder dashboard ideas
 */
.placeholders {
    margin-bottom: 30px;
    text-align: center;
}

.placeholders h4 {
    margin-bottom: 0;
}

.placeholder {
    margin-bottom: 20px;
}

.placeholder img {
    display: inline-block;
    border-radius: 50%;
}

input[type="checkbox"] {
    vertical-align: middle;
    margin-bottom: 1px;
    margin-top: 0;
    margin-left: 5px;
}

ul.errorlist
{
    list-style-type: none;
    color: darkred;
}

h2.form{
    border-bottom: 1px solid red;
}

h3.form{
    border-bottom: 1px solid red;
}

.btn-group{
    margin-bottom: 10px;
}

.edit{
    margin: 0 auto;
}

a:hover{
    cursor: pointer;
}
