/* --- Header & Tabs --- */
.md-header, .md-tabs {
    background-color: #0077BE !important; /* Kelvin Blue */
}

/* --- Sidebar Links --- */
.md-nav__link {
    color: #0077BE !important; /* Kelvin Blue */
}

/* Hover effect for sidebar links */
.md-nav__link:hover {
    color: #005f94 !important; /* Darker blue on hover */
}

.md-nav__link--active {
    font-weight: bold !important;
    color: #005f94 !important; /* slightly darker blue for active link */
}


/* --- Documentation Content Links --- */
.md-content a {
    color: #0077BE !important;   /* Kelvin Blue */
    text-decoration: none !important;
    font-weight: 500;
}

/* Hover effect for documentation links */
.md-content a:hover {
    color: #005f94 !important;   /* Darker blue on hover */
    text-decoration: underline;
}

/* --- Optional: improve focus style for accessibility --- */
.md-nav__link:focus,
.md-content a:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

