﻿#wizardNav {
    background-color: green;
    display: flex;
    justify-content: space-between;
}

#wizardNav .col-6 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}







/* Dropdown Button */
.dropbtn {
    padding: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
}

 /*The container <div> - needed to position the dropdown content*/ 
.dropdown {
    position: relative;
    display: inline-block;
    float: right;
    right: 0;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: blue;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu */
.show {
    display: block;
}
