/* custom.css */

/* Change the background color of the navigation header */
.wy-side-nav-search {
    background:#48A0C3 /* FDC Blue*/
}

/* Change the background color of the main sidebar menu */
.wy-nav-side {
    background: #abcb8ac7; /* Map Green*/
}

.icon-home {
    color: #48A0C3; /* FDC Blue */
}

.home-icon-class svg {
    fill: #48A0C3; /* Replace with your desired color code */
}
.wy-breadcrumbs a:visited {
    color: #48A0C3; /* Replace with your chosen color code */
}

.wy-nav-top a.icon-home {
    color: #4791c3; /* Change to your desired color */
}

.wy-menu-vertical a:hover {
    background-color: #85d1f0; /* Change this to your desired hover background color */
    color: #ffffff; /* Optionally, change the text color on hover */
}

.caption span.caption-text { 
   color: #ffffff; /* White */
}

.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) */
}

.wy-nav-content-wrap .footer {
    display: none;
}

.toctree-l1 > a {
    color: rgb(0, 0, 0);
}

/* Change the background color of the left sidebar menu level 1*/
.wy-menu > .caption > span.caption-text {
    color: #ffffff; /* Example for white */
}

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

.bottom-of-page {
    display: none;
}

.toctree-l2 {
    background-color:#e8f5f6; /* Light blue background */
}

/* Change the background and border color for the entire 'note' block */
.admonition.note {
    background-color: #f6f5e8; /* Cream background */
}

/* Change the background color of the 'note' title */
.admonition.note > .admonition-title {
    background-color: #1c3f56;  /* dark blue  */
}

/* Change the background and border color for the entire 'hint' block */
.admonition.hint {
    background-color: #e9f2f8 /* Light Blue */
}

/* Change the background color of the 'note' title */
.admonition.hint > .admonition-title {
    background-color: #4992c4;  /* medium blue  */
}

.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;
}

:class: with-border
img {
    max-width: 20%; /* Adjust this percentage as needed */
    height: auto; /* Maintain aspect ratio */
}

video.video-with-border {
    border: 20px solid #000;  /* Adjust thickness, style, and color as needed */
    border-radius: 8px;      /* Optional: rounded corners */
    box-sizing: border-box;  /* Ensures border doesn't increase overall size */
}

video {
    border: 20px solid #000;
}

div.sphinxsignature,
p.caption + p > em,  /* Targets the specific "Built with..." paragraph */
footer .rst-footer-buttons ~ p em {  /* Alternative/more specific selector if needed */
    display: none !important;
}

/* Or hide the entire footer credits section: */
footer .rst-footer-buttons + hr + p {
    display: none;
}