body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("../media/img/bg/weather.png");
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Maven Pro', sans-serif;
}

main {
    margin: 8px;
    margin-bottom: 20px;
    /* Fix IE */
    display: block;
}

.cen {
    text-align: center;
}

.left {
    text-align: left;
}

.table-cen {
    margin-left: auto;
    margin-right: auto;
}

.margin {
    margin: 8px;
}

a {
    color: orangered;
    text-decoration: none;
}

a:visited {
    color: orangered;
}

a:hover {
    color: tomato;
    font-weight: bolder;
}

a:active {
    color: red;
}

.textbox {
    display: inline-block;
    box-sizing: border-box;
    width: 150px;
    cursor: text;
    padding: 2px 10px;
    border: 1px solid orange;
    border-radius: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: black;
    transition: all 500ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
    outline: none;
}

.textbox:hover {
    border: 1px solid darkorange;
}

.textbox:focus {
    width: 250px;
    border: 1px solid orange;
}

.button, button {
    box-sizing: content-box;
    padding: 5px 10px;
    border: none;
    border-radius: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: white;
    text-align: center;
    background: orange;
    transition: background 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    outline: none;
}

.button:hover, button:hover {
    background: darkorange;
}

.button:active, button:active {
    background: red;
    transition: none;
}

.button:disabled, .button:disabled {
    background-color: gray;
}

a.button, a.button:hover {
    color: white;
    font-weight: normal;
    cursor: default;
}

a.no-link {
    color: black;
}

a.no-link:hover {
    text-decoration: underline;
    font-weight: bolder;
}

#dataTable {
    margin-top: 30px;
    margin-bottom: 30px;
}

#dataTable td {
    text-align: left;
}

#graphContainer {
    overflow: auto;
}