/* custom.css */

/* Change the background color of the navigation header */
.wy-side-nav-search {
    background: #33793f; /* Replace with your desired color */
}

/* Change the background color of the main sidebar menu */
.wy-nav-side {
    background:#33793f; /* Dark green */
}

.icon-home {
    color: #33793f; /* Dark green */
}

/* Change the text color of the left sidebar menu */
.caption span.caption-text {
    color: #FFFFFF; /* Change to your desired color */
}
.wy-nav-side caption-text a {
    color: #000000;
}
.wy-nav-side p.caption a {
    color: #000000; /* Replace with your desired color (e.g., #FFFFFF for white, or a specific color name) */
}

/* Change the background color of the left sidebar menu sublevels*/

.toctree-l2 {
    background-color:#4ac06034; /* light green background */
}

/* Change the background and border color for the entire 'note' block */
.admonition.note {
    background-color: #4ac06034; /* Lighter green background */
}

/* Change the background color of the 'note' title */
.admonition.note > .admonition-title {
    background-color: #33793f;  /* dark green  */
}

/* Change the background and border color for the entire 'hint' block */
.admonition.hint {
    background-color: #E6E6FA /* Lighter lavendar background */
}

/* Change the background color of the 'note' title */
.admonition.hint > .admonition-title {
    background-color: #967BB6;  /* dark lavendar */
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

img {
    border: 1px solid #ccc; /* Example: 1px solid light gray border */
    padding: 5px; /* Optional: add some padding around the image inside the border */
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    display: block;
}

/* Add border to figures with the class "bordered-figure" */
.bordered-figure {
    border-style: solid;
    border-width: 2px;
    border-color: black;
}
