/*
 * Copyright (c) 2019. Andrew Bailey Communication Services
 */

/* Elements */

html{
    background-color: #ffffff;
    color: #000000;
}

h1{
    color: #4CAF50;
}

h2{
    color: #4CAF50;
}

h3{
    color: #4CAF50;
}
/* Classes */

/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
    background-color: #4CAF50;
    color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* media inquiries */

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

.data {
    background-color: #123123;
    color: #ffffff;
    padding: 5px;
}
.label {
    background-color: #123123;
    color: #ffffff;
}
.edit {
    background-color: #ffffff;
    color: #000000;
}

.header {
    background-color: #e2e2e2;
    color: #000000;
}

.section {
    width: 33%;
    max-width: 500px;
    float: left;
}