/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 
for details on configuring this project to bundle and minify static web assets. */
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;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}
.menubar-link {
    color: darkgreen;
    text-decoration: none;
}

    .menubar-link:hover {
        color: darkgreen; /* Gold on hover */
        background-color:red;
    }

    .menubar-link:visited {
        color: #dddddd; /* Light gray for visited links */
    }
.menubar-link {
    transition: color 0.3s ease;
}
/* Base tab button style */
.nav-tabs > li > a {
    font-size: 1.1em;
    font-weight: 500;
    background-color: #f5f5f5;
    color: darkgreen;
    border: 1px solid #ddd;
    margin-right: 4px;
    border-radius: 4px 4px 2px 2px;
    padding: 10px 15px;
}

/* Active tab button */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background-color: darkgreen;
    color: #fff;
    border-color: #337ab7 #337ab7 transparent;
}

/* Hover effect */
.nav-tabs > li > a:hover {
    background-color: #e6e6e6;
    color: darkgreen;

}

.btn-primary:hover {
    background-color: #cccccc; /* dark grey */
    border-color: #cccccc;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-color: #164514; /* dark green */
    border-color: #164514;
}