/* Velocireporter Server Global Styles */

:root {
    --primary-color: #394762;
    --secondary-color: #4C6891;
    --bg-color: #F4F4F4;
    --card-bg: #ffffff;
    --text-color: #041638;
    --text-muted: #4C6891;
    --border-color: #D1D5DB;
    --code-bg: #041638;
    --code-text: #F4F4F4;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 40px 20px;
    line-height: 1.6;
    font-weight: 300; /* Roboto Light for Content */
}

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

header {
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

header h1 {
    margin: 0;
    font-size: 1.875rem;
    font-weight: 500; /* Roboto Medium for Headings */
    color: var(--primary-color);
}

.status-badge {
    background-color: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

section {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

section h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.125rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500; /* Roboto Medium for Subheadings */
}

pre {
    background: var(--code-bg);
    color: var(--code-text);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400; /* Keep code legible */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 60px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-logo {
    margin-top: 20px;
    height: 40px;
    width: auto;
    opacity: 0.8;
}

/* Navigation */
.nav-list {
    list-style: none;
    padding: 0;
}

.nav-item {
    margin-bottom: 12px;
}

.nav-item-muted {
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* Global Table Utils */
.table-responsive {
    margin-top: 20px;
    overflow-x: auto;
}

.center-muted {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
}

/* Error Pages */
.error-page {
    text-align: center;
    padding: 40px 20px;
}

.error-image {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 12px;
}
