﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.form-select-sm {
    border: 1px solid #00000087;
}
.welcome {
    margin: 20px;
    font-size: 16px;
    color: white;
    margin-top: 0px;
}
.header {
    background: #0066ff;
    padding: 15px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    border-radius: 6px;
    margin: 20px;
    color: white;
}
    .body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}
.Auto {
    background-color: #84e39d !important;
}
/* 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) {
    .body-content {
        padding: 0;
    }
}


/* multi-level dropdown support */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 0.1rem;
        margin-right: 0.1rem;
    }

    .dropdown-submenu > a::after {
        content: "▸";
        float: right;
        margin-left: .5rem;
        opacity: .6;
    }

.dropdown-menu .dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0;
}

@media (max-width: 991px) {
    /* stack nested menus in mobile collapse */
    .dropdown-submenu > .dropdown-menu {
        left: 0;
        position: relative;
    }
}