/* Sticky outdated docs banner */
.outdated-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ff6b6b;
    color: white;
    padding: 12px 20px;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.outdated-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 5px;
}

.outdated-banner a:hover {
    text-decoration: none;
    opacity: 0.9;
}

/* Adjust page content to account for banner */
body {
    padding-top: 50px !important;
}

/* Ensure banner doesn't interfere with sidebar */
.sidebar {
    top: 50px !important;
}

/* Ensure banner doesn't interfere with chapter content */
.chapter {
    padding-top: 0;
}

/* Adjust main content area */
main {
    margin-top: 0;
}

