#questionSection > form > div.blue-panel > div:nth-child(5),
#questionSection > form > div.blue-panel > hr:nth-child(6) {
    display: none;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background-color: white;
}

body {
    height: 100vh; /* Full viewport height */
    margin: 0; /* Remove default margin */
    font-family: 'Verlag', sans-serif;
    background: linear-gradient(90deg, #21145f 20%, #1e22aa 100%);
    color: #333;
    padding: 20px;
}

div.main-form {
    background-color: #fcfcfc;
    max-width: 1000px;
}

.secondary-nav {
    background-color: #1e22aa;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.secondary-nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 5px;
    margin: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.secondary-nav a:hover {
    background-color: #21145f;
    color: #f4f4f4;
    text-decoration: none;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2, h3 {
    font-family: 'Prometo', sans-serif;
    color: #1e22aa;
}

h2 {
    margin-bottom: 10px;
}

h3 {
    margin-top: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

ul, ol {
    padding-left: 20px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Verlag', sans-serif;
}

ul li, ol li {
    margin-bottom: 5px;
}

ul li {
    list-style-type: disc;
}

ol li {
    list-style-type: decimal;
}

ul li::marker, ol li::marker {
    color: #1e22aa;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ccc;
}

th {
    background-color: #1e22aa;
    color: white;
}

@media (max-width: 600px) {
    .navbar {
        text-align: center;
    }

    .navbar a:hover {
        text-decoration: underline;
    }
}

/* Hide the sign off button immediately */
.navbar-nav a[href="#"][onclick*="logoff-form"] {
    display: none !important;
}
