/* Sandpiper Website Styles */

/* Base styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

/* Title bar */
.title-bar {
    background-color: #000;
    color: #fff;
    padding: 20px 40px;
    margin: 0;
}

.title-bar h1 {
    color: #fff;
    margin: 0;
}

/* Main content */
.content {
    padding: 40px;
    max-width: 900px;
}

/* Breadcrumb navigation */
.breadcrumb {
    background-color: #e9ecef;
    padding: 10px 40px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #3498db;
}

/* Documentation links */
.doc-links {
    list-style: none;
    padding: 0;
}

.doc-links li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.doc-links li:last-child {
    border-bottom: none;
}

/* API function blocks */
.api-function {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
    margin: 15px 0;
}

.function-signature {
    display: block;
    background-color: #1a1a2e;
    color: #00f0d0;
    padding: 10px 15px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    margin-bottom: 10px;
    overflow-x: auto;
}

/* Code blocks */
pre {
    background-color: #1a1a2e;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 4px;
    overflow-x: auto;
}

pre code {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    background-color: transparent;
    color: inherit;
    padding: 0;
}

code {
    background-color: #e9ecef;
    color: #333;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
}

/* Ensure api-function text is readable */
.api-function {
    color: #333;
}

.api-function p {
    color: #555;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

/* Status badges */
.status-badge {
    vertical-align: middle;
    margin-left: 8px;
}

/* Typography */
h1 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    color: #555;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}
