/* Decrease the font size of the toctree sidebar caption */
.wy-menu-vertical .caption span {
    font-size: 100%;
}

/* --- Style for the in-page toctree caption --- */

/* Targets the text inside the caption paragraph */
p.caption .caption-text {
    font-size: 0.8em;   /* Makes it slightly larger and bolder */
    /*font-weight: bold;
    /*color: #DDDDDD;     /* Example: a lighter gray color */
}

/* Optional: remove the default top margin to bring it closer to the list */
p.caption {
    margin-top: 0;
    margin-bottom: 0;
}

.large-link a {
    font-size: 1.3em; /* 130% of the normal font size */
    font-weight: bold;
}

/* Hides the floating "versions" menu in the bottom right corner */
readthedocs-flyout {
    display: none !important;
}

/* Widen the main content area on larger screens (default is 800px) */
.wy-nav-content {
    max-width: 1000px;
}

/* Force figure captions to appear below the image, not beside it.
   The italic text after each figure is a sibling <p>, not a <figcaption>,
   so we clear the float on any paragraph that immediately follows a figure. */
figure + p {
    clear: both;
}
