:root {
    --primary-color: #0066FF;
    --primary-dark: #0052cc;
    --secondary-color: #00D1FF;
    --text-color: #FFFFFF;
    --text-light: #E6E6E6;
    --background-dark: #0A192F;
    --background-light: #112240;
    --border-color: #233554;
    --success-color: #00C853;
    --warning-color: #FFB300;
    --danger-color: #FF1744;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-dark);
}

.docs-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: var(--background-light);
    border-right: 1px solid var(--border-color);
    padding: 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.logo-container {
    padding: 0.5rem 0 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    width: 180px;
    height: auto;
}

.main-content {
    flex: 1;
    padding: 2rem 3rem;
    margin-left: 250px;
    max-width: 900px;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background: rgba(0, 209, 255, 0.1);
}

.nav-menu a.active {
    background: var(--primary-color);
    color: white;
}

h1,
h2,
h3 {
    color: var(--text-color);
    font-weight: 600;
}

h4 {
    color: var(--secondary-color);
    font-weight: 600;
}

p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.screenshot {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.screenshot img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.screenshot-placeholder {
    background: var(--background-light);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.screenshot-img {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.feature-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.steps-container {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.step {
    position: relative;
    margin-bottom: 2rem;
}

.step::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
}

.step::after {
    content: '';
    position: absolute;
    left: -1.625rem;
    top: 1.5rem;
    width: 2px;
    height: calc(100% + 1rem);
    background: var(--border-color);
}

.step:last-child::after {
    display: none;
}

.callout {
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 6px 6px 0;
}

.callout h3,
.callout h4 {
    color: var(--text-color);
    margin-top: 0;
}

.callout p {
    margin-bottom: 0;
}

.callout.warning {
    background: rgba(255, 179, 0, 0.1);
    border-left-color: var(--warning-color);
}

.callout.tip {
    border-left-color: var(--secondary-color);
    background: rgba(0, 209, 255, 0.1);
}

/* Quick Start section styling */
.quick-start {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.quick-start h2 {
    margin-top: 0;
    color: var(--text-color);
}

.quick-start p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.quick-start a:hover {
    text-decoration: underline;
}

/* Professional Reports section styling */
.pro-reports {
    margin-top: 2rem;
}

.pro-reports h2 {
    color: var(--primary-color);
}

.pro-reports p {
    max-width: 600px;
}

/* Breadcrumb Navigation */
.breadcrumbs {
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--border-color);
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.breadcrumbs .active {
    color: var(--secondary-color);
}

/* Links */
a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Lists */
ul,
ol {
    color: var(--text-light);
    padding-left: 1.5rem;
}

/* Code blocks */
code {
    background: rgba(0, 209, 255, 0.1);
    color: var(--secondary-color);
    padding: 0.2em 0.4em;
    border-radius: 3px;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 1rem 0;
}

th,
td {
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    color: var(--text-light);
}

th {
    background: var(--background-light);
    color: var(--text-color);
}