/* NCodeSite v2 fix — Services dropdown on the legal pages.
   v1's privacy.css has no .dropdown* rules, so on privacy-policy/terms the
   dropdown links rendered permanently expanded with no hover behavior (broken
   on the live site too). These rules are copied verbatim from main.css
   (lines 77-124) so both headers behave identically. Loaded after privacy.css
   on the pages that need it; v1 files stay untouched. */

.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn {
    color: #eee;
    text-decoration: none;
    font-weight: 100;
    padding: 5px;
    cursor: pointer;
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content a {
    color: #eee;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #444;
    color: #1e90ff;
    text-shadow: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #eee;
    text-shadow: 0 0 5px #1e90ff;
}
