/* Main background and text */
.md-main, .md-content, .md-typeset {
    background-color: #1E2A38 !important;
    color: #EAEAEA !important;
}

/* Headings */
.md-typeset h1, .md-typeset h2, .md-typeset h3 {
    color: #ffffff !important;
}

/* Navbar styling */
.md-header {
    background-color: #1E2A38 !important;
    color: white !important;
}

/* Navbar links */
.md-header-nav__title,
.md-header-nav a {
    color: white !important;
}

.md-header-nav a:hover {
    text-decoration: none;
}

/* Remove the black line under the site title */
.md-nav__title {
    background: none !important;
    box-shadow: none !important;
}

/* Sidebar background and text */
.md-nav--primary,
.md-nav--primary .md-nav__title {
    background-color: #1E2A38 !important;
    color: white !important;
}

/* Section titles like "GETTING STARTED", "COMMANDS" — static white label style */
.md-nav__section-title {
    background-color: transparent !important;
    color: white !important;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
    margin: 6px 0;
    cursor: default;
}

/* Prevent hover/focus effect on section titles */
.md-nav__section-title:hover {
    background-color: transparent !important;
    color: white !important;
}

/* Sidebar links */
.md-nav__link {
    color: #EAEAEA !important;
    transition: background 0.3s ease-in-out;
    padding: 6px 12px;
    border-radius: 6px;
    display: block;
}

/* Hover effect on links */
.md-nav__link:hover {
    background-color: #2C3A4A !important;
}

/* Active link styling */
.md-nav__item--active > .md-nav__link {
    font-weight: bold;
    color: #66B2FF !important;
    background-color: #2C3A4A !important;
}

/* Footer */
.md-footer {
    background-color: #1E2A38 !important;
    color: #ccc !important;
}

/* Footer link */
.md-footer .md-footer__copyright a {
    color: #66B2FF !important;
    text-decoration: none;
}

.md-footer a:hover {
    text-decoration: underline;
}

/* Search */
.md-search__input {
    background-color: #2C3A4A !important;
    color: white !important;
    border-radius: 4px;
}

.md-search__input::placeholder {
    color: #aaa !important;
}

.md-search__output {
    background-color: #2C3A4A !important;
    color: white !important;
}

/* Content links */
.md-typeset a {
    color: #66B2FF !important;
    text-decoration: none;
}

.md-typeset a:hover {
    border-radius: 4px;
    background-color: #2C3A4A !important;
}

/* Image styling */
.md-typeset img {
    border-radius: 8px;
    margin-bottom: 1rem;
    max-width: 100%;
    height: auto;
}

/* Remove outlines and unnecessary styles on buttons/links */
a:focus, a:active,
button:focus, button:active {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}