﻿:root {
    --bs-body-font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Typography & Density */
body {
    font-size: 0.875rem;
    background-color: var(--bs-tertiary-bg);
}

.fw-bold {
    font-weight: 700 !important;
}

/* Layout */
.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
}

section {
    padding: 2.5rem 0;
}

/* Components */
.card {
    border: 1px solid var(--bs-border-color-translucent);
    transition: all 0.2s ease;
    border-radius: 12px;
}

.ipo-card {
    border-top: 4px solid var(--bs-primary);
    height: 100%;
}

    .ipo-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Timeline */
.timeline-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 1rem 0;
    scrollbar-width: none;
}

    .timeline-container::-webkit-scrollbar {
        display: none;
    }

.timeline-item {
    display: inline-block;
    width: 200px;
    border-left: 2px dashed var(--bs-border-color);
    padding-left: 1rem;
    margin-right: 1.5rem;
}

/* Table Density */
.table-sm-custom th {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--bs-secondary);
    letter-spacing: 0.5px;
}

/* Dark Mode UI */
[data-bs-theme="dark"] .ipo-card {
    background-color: #1e1e2d;
}

[data-bs-theme="dark"] .bg-light {
    background-color: #2b2b40 !important;
}

.btn-check:focus + .btn, .btn:focus {
    box-shadow: none;
}

.nav-pills .nav-link {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}
