/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Chart Container */
.chart-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    height: 400px;
    max-height: 450px;
}

/* Timeline Connector */
.timeline-line::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 28px;
    width: 2px;
    background: #e2e8f0;
    z-index: 0;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.active-nav {
    border-bottom: 2px solid #f97316;
    color: #1e293b;
    font-weight: 600;
}

/* Oracle Glow */
.oracle-glow {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
    transition: all 0.3s ease;
}

.oracle-glow:hover {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
    border-color: #f97316;
}

/* Job Card Hover */
.job-card:hover {
    transform: translateY(-2px);
    border-color: #f97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

/* AI Content Styling */
.ai-content h1,
.ai-content h2,
.ai-content h3 {
    font-weight: 700;
    margin-top: 1em;
    margin-bottom: 0.5em;
    color: #fb923c;
}

.ai-content p {
    margin-bottom: 0.8em;
    line-height: 1.6;
}

.ai-content ul,
.ai-content ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
    list-style-type: disc;
}

.ai-content li {
    margin-bottom: 0.4em;
}

.ai-content strong {
    color: #f97316;
    font-weight: 600;
}

.ai-content code {
    background: #334155;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    color: #e2e8f0;
}

.ai-content pre {
    background: #1e293b;
    padding: 1em;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1em;
    border: 1px solid #334155;
}

.ai-content pre code {
    background: transparent;
    padding: 0;
    color: #f8fafc;
}

.ai-content a {
    color: #38bdf8;
    text-decoration: underline;
}

/* Utility Classes */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
