﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    background: #f1f1f1;
}

.body-container {
    box-shadow: 0px 0px 500px #cecece;
    background: white;
    padding: 0px;
}

/**/
a {
    color: #5fc041;
}

    a:hover {
        color: #34522b;
        text-decoration: underline
    }

.container-link {
    float: left;
    width: calc(50% - 80px);
    text-align: center;
    font-size: 20px;
    border: green solid 1px;
    margin: 25px 40px;
    box-sizing: border-box;
    box-shadow: #cecece 3px 3px 7px -1px;
    position: relative;
}

    .container-link:hover {
        border-color: #5fc041;
        text-decoration: underline;
    }

.smartgraph-links {
    padding: 0 80px;
}

img.link-image {
    max-width: 100%;
    height: auto;
}

.real-time,
.historical {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 15px;
    color:#000000;
}

    .real-time::after {
        content: "Real time";
        color: #5fc041;
    }

    .historical::after {
        content: "Historical";
        color: #5fc041;
    }
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    background-color: white;
    min-height: 800px;
    padding-top: 50px !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
}

}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

.navbar .container {
    padding: 5px;
}

.navbar {
    background-color: white;
    font-size: 27px;
    color: #34522b;
    box-shadow: 0 0 10px grey;
    font-weight: 600;
}

.logos img {
    height: 55px;
    margin: 0 15px;
}

#uitleg {
    padding: 10px 50px;
}

.expand {
    cursor: pointer;
}

.details {
    background-color: rgb(241, 241, 241);
    border: 1px solid darkgrey;
    padding: 5px 10px;
}

/* Dropdown */
.dropdown .dropdown-button {
    float: right;
    padding-top: 12px;
    padding-left: 4px;
    font-size: 16px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 401;
    top: 100%;
}

    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-size: 16px;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}
