/* service.c33b.org - Main Stylesheet */

body {
    background-color: #000000; /* Increased contrast: pure black */
    color: #ffffff; /* Increased contrast: pure white */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 720px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff; /* Increased contrast */
}

h2 {
    margin-top: 2em;
    margin-bottom: 0.5em;
}

h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

a {
    color: #66b3ff; /* Increased contrast: lighter blue */
    text-decoration: underline; /* Better visibility for links */
}

a:hover,
a:focus {
    color: #99ccff; /* Even lighter on hover/focus */
    text-decoration: underline;
    outline: 2px solid #66b3ff; /* Visible focus indicator */
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #66b3ff;
    color: #000;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

ul {
    margin: 1em 0;
}

li {
    margin: 0.5em 0;
}

hr {
    border: none;
    border-top: 2px solid #ffffff; /* Increased contrast and thickness */
    margin: 2em 0;
}

p {
    margin: 1em 0;
}

pre {
    background-color: #1a1a1a; /* Darker background for better contrast */
    border: 2px solid #444444; /* Thicker, higher contrast border */
    border-radius: 6px;
    padding: 12px 16px;
    overflow-x: auto;
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
    background-color: #333333; /* Higher contrast background */
    color: #ffffff;
    padding: 0 0.2em;
    border-radius: 4px;
}

pre code {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

/* Breadcrumb navigation */
.breadcrumbs {
    color: #cccccc; /* Higher contrast */
    margin-bottom: 1em;
}

.breadcrumbs a {
    color: #66b3ff;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid #66b3ff;
    outline-offset: 2px;
}

/* High contrast for strong/bold text */
strong, b {
    color: #ffffff;
    font-weight: 700;
}

/* Ensure proper heading hierarchy is visible */
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.25em; }
h4 { font-size: 1.1em; }
h5 { font-size: 1em; }
h6 { font-size: 0.9em; }
