/* Change RTD blue to your preferred color */
.wy-side-nav-search, .wy-nav-top {
    background: #001F33 !important; /* Replace with your color */
}

/* Controls the Sidebar Search Name */
.wy-side-nav-search > a {
    font-size: 1.8em !important; /* Adjust as needed */
    font-weight: bold;
}

.wy-menu-vertical a {
    font-size: 120% !important; /* Increase as needed, e.g., 120%, 1.1em, 18px */
}
.wy-menu-vertical a {
    color: #9a86d5 !important; /* Muted dark purple for readability */
}
/* Sidebar menu links: default, hover, active, and submenu states */
.wy-menu-vertical a,
.wy-menu-vertical li.toctree-l2 > a,
.wy-menu-vertical li.toctree-l3 > a,
.wy-menu-vertical li.toctree-l4 > a {
    color: #927bd8 !important; /* Muted dark purple for readability */
}

.wy-menu-vertical a:hover,
.wy-menu-vertical a:focus,
.wy-menu-vertical li.current > a,
.wy-menu-vertical li.toctree-l2.current > a,
.wy-menu-vertical li.toctree-l3.current > a {
    color: #1a1833 !important; /* Even darker for active/hovered links */
    background: #e0dff6 !important; /* Optional: subtle background for active */
}
.wy-menu-vertical a:hover,
.wy-menu-vertical a:focus,
.wy-menu-vertical li.current > a {
    color: #1a1833 !important; /* Even darker for active/hovered links */
    background: #e0dff6 !important; /* Optional: subtle background for active */
}

/* Optional: make sure submenu links are also styled */
.wy-menu-vertical li.toctree-l2 > a {
    color: #3d2c70 !important;
}
/* Make link text less bright in the main content */
.rst-content a,
.rst-content a:visited {
    color: #6a4fa3 !important; /* Softer purple, adjust as needed */
    text-decoration: underline;
}

/* Optional: Change link color on hover for better accessibility */
.rst-content a:hover {
    color: #3d2c70 !important; /* Even darker on hover */
}