ul.dashboard-menu {
    list-style-type: none;
    margin: 0 20px 0 0;
    padding: 0;
    overflow: hidden;
    background-color: #0270f0;
    display: flex;
    justify-content: flex-end;
}

ul.dashboard-menu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul.dashboard-menu li a:hover {
    background-color: #002743;
}

ul.dashboard-menu li a:focus {
    background-color: #002743;
    outline: none;
}

ul.dashboard-menu li ul.dropdown-menu {
    background-color: #0270f0;
}

ul.dashboard-menu li ul.dropdown-menu li {
    background-color: #0270f0;
    padding: 0 5px;
    width: 100%;
}

ul.dashboard-menu li ul.dropdown-menu li:hover {
    background-color: #002743;
    cursor: pointer;
}

ul.dashboard-menu li ul.dropdown-menu li:focus {
    background-color: #002743;
    outline: none;
}

ul.dashboard-menu li ul.dropdown-menu li > a {
    background-color: #0270f0;
    display: block;
    width: 100%;
    padding: 5px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    border: 0;
    text-align: left;
}

ul.dashboard-menu li ul.dropdown-menu li a:hover {
    background-color: #002743;
    cursor: pointer;
}

ul.dashboard-menu li ul.dropdown-menu li a:focus {
    background-color: #002743;
    outline: none;
}

.dashboard-jur-image img {
    max-height: 100px;
}

.widget-title-dashboard {
    font-size: 15px;
}

/* Dashboard CTA: always visible, WCAG AA contrast, focus outline, 44x44 px touch target, fixed width */
.widget-clickable .widget-cta,
.widget-clickable .btn.widget-cta {
    display: inline-block;
    width: 160px;
    min-height: 44px;
    padding: 10px 14px;
    margin-top: 8px;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
}

.widget-clickable .widget-cta:focus,
.widget-clickable .btn.widget-cta:focus,
.widget-clickable .widget-cta:focus-visible,
.widget-clickable .btn.widget-cta:focus-visible {
    outline: 2px solid #0270f0;
    outline-offset: 2px;
}

/* Dashboard CTA: all buttons blue for consistency and WCAG 2.1 AA (4.5:1 text, 3:1 graphics) */
.widget-clickable .widget-cta,
.widget-clickable .btn.widget-cta {
    background-color: #0270f0;
    color: #fff;
    border-color: #0270f0;
}

.widget-clickable .widget-cta:hover,
.widget-clickable .btn.widget-cta:hover {
    background-color: #00263a;
    color: #fff;
    border-color: #00263a;
}

/* Touch and mobile: same fixed CTA width; cap at container on very narrow viewports */
@media (max-width: 767px) {
    .widget-clickable .widget-cta,
    .widget-clickable .btn.widget-cta {
        display: inline-block;
        width: 160px;
        max-width: 100%;
        min-height: 44px;
        padding: 10px 14px;
        margin-top: 8px;
        box-sizing: border-box;
    }
}