﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}

.jumbotron {
    background-color: #efd47e;
    border-style: solid;
    border-width: 1px;
    background-size: cover;
    height: 100%;
    width: 100%;
    min-width: 800px;
}

td {
    border-top: none;
}

.pageHeader {
    text-align: left; 
    background-color: seagreen; 
    padding: 10px;
}

.mainWindow {
    background-color: whitesmoke;
    border-color: black;
    border-width: 1px;
    border-style: solid;
    border-radius: 5px;
    min-width: 500px;
}

.containerTitleRow {
    color: white;
    width: 100%;
    padding-top: 0px;
    padding-left: 15px;
    padding-right: 0px;
    margin-bottom: 15px;
    margin-right: 0px;
    margin-left: 0px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    box-sizing: border-box;
}

.steelBlue {
    background-color: steelblue;
}

.seaGreen {
    background-color: seagreen;
}

.containerNoPadding {
    padding-right: 0px;
    padding-left: 0px;
    box-sizing: border-box;
}

.containerBody {
    padding-bottom: 15px;
    display: table;
}

.verticalAlignCenterContainer {
    display: table-cell;
    vertical-align: middle;
}

.rowWithPadding {
    padding: 5px;
}

.alignRight {
    text-align: right;
}

.height400 {
    height: 400px;
}

.panel-border-black {
    border-color: #000000;
}
.panel-heading-green {
    color: white;
    background-color: seagreen;
}