/* Standard border for all pages */
body {
    background-image: url('../images/Borders/border-standard.png');
    background-color: #1a1a1a;
    background-size: 100% 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

/* Make MkDocs Material main containers transparent to see the border */
.md-main, .md-header {
    background: transparent !important;
}

/* Ensure the main text content is readable against the background */
.md-content {
    background: rgba(15, 15, 15, 0.85); /* Dark semi-transparent backdrop */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Ensure the sidebar navigation is readable */
.md-sidebar--primary .md-sidebar__scrollwrap,
.md-sidebar--secondary .md-sidebar__scrollwrap {
    background: rgba(15, 15, 15, 0.7);
    padding: 1rem;
    border-radius: 8px;
}
