:root {
    /* Color Palette */
    --navy: #0F172A; /* Sidebar and left side of auth */
    --navy-light: #1E293B;
    --yellow: #FFC107; /* Buttons, active state backgrounds */
    --yellow-hover: #F5B000;
    --yellow-light: #FFF8E1;
    
    --bg-main: #F4F6F8; /* Light gray for app background */
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --text-inverse: #FFFFFF; /* Text on dark navy */
    
    --card-bg: #FFFFFF;
    --border-color: #E5E7EB;
    
    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    
    /* Variables */
    --sidebar-width: 250px;
    --header-height: 70px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.2s ease-in-out;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Utilities */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hover-lift {
    transition: var(--transition);
}
.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

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

.hidden {
    display: none !important;
}

/* Background Utility Classes */
.bg-yellow { background-color: var(--yellow); color: var(--navy); }
.bg-blue-light { background-color: #EFF6FF; color: var(--info); }
.bg-green-light { background-color: #ECFDF5; color: var(--success); }
.bg-red-light { background-color: #FEF2F2; color: var(--danger); }
.bg-navy { background-color: var(--navy); color: var(--text-inverse); }

.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-info { color: var(--info); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.flex-1 { flex: 1; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--navy);
}
.btn-primary:hover {
    background-color: var(--yellow-hover);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}
.btn-outline:hover, .btn-outline.active {
    border-color: var(--navy);
    color: var(--navy);
    background: #F3F4F6;
}

.btn-text {
    background: transparent;
    color: var(--navy);
    padding: 6px 12px;
}
.btn-text:hover {
    background: #F3F4F6;
}

.btn-block {
    width: 100%;
}
.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.icon-btn:hover {
    background: #F3F4F6;
    color: var(--navy);
}

/* Auth Screens */
.auth-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--card-bg);
}
.auth-left {
    flex: 1;
    background: var(--navy);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.auth-left-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.2;
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
    /* Replace with actual image later if needed */
}
.auth-branding {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: auto;
}
.auth-branding .logo-icon {
    color: var(--yellow);
    font-size: 32px;
}
.auth-branding .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}
.auth-left-text {
    position: relative;
    z-index: 10;
    margin-top: auto;
    max-width: 400px;
}
.auth-left-text h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}
.auth-left-text p {
    color: #9CA3AF;
    font-size: 1.1rem;
}

.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.auth-form-container {
    width: 100%;
    max-width: 400px;
}
.auth-header-mobile {
    display: none;
}
.auth-form-container h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--navy);
}
.auth-form-container p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.input-group {
    margin-bottom: 20px;
}
.input-row {
    display: flex;
    gap: 16px;
}
.input-row .input-group {
    flex: 1;
}
.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-wrapper > .material-icons-round {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 20px;
    pointer-events: none;
}
.input-wrapper input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}
.input-wrapper input:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.85rem;
}
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.forgot-password {
    color: var(--text-muted);
    text-decoration: none;
}
.forgot-password:hover {
    color: var(--navy);
}

.auth-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.auth-footer a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

/* Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--navy);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    transition: transform 0.3s ease;
}

.sidebar-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.sidebar-nav {
    flex: 1;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #9CA3AF;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}
.nav-link.active {
    background-color: var(--yellow);
    color: var(--navy);
    font-weight: 600;
}

.sidebar-footer {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main-content.full-width {
    margin-left: 0;
}

.top-header {
    height: var(--header-height);
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
#menu-toggle {
    display: none;
}
.page-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
}
.search-container input {
    width: 100%;
    padding: 8px 16px 8px 36px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    background: #F9FAFB;
}
.search-container .material-icons-round {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 18px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.user-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.view-container {
    padding: 32px;
    flex: 1;
}

/* Dashboard Specifics */
.dash-intro {
    margin-bottom: 24px;
}
.dash-intro p {
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.analytics-grid {
    display: grid;
    gap: 28px;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .analytics-grid {
        grid-template-columns: 1fr 1.6fr !important;
    }
}
.stat-card {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stat-details h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}
.stat-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
}
.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon.bg-navy { background-color: var(--navy); color: white; }
.stat-icon.bg-yellow { background-color: var(--yellow); color: var(--navy); }
.stat-icon .material-icons-round {
    font-size: 28px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.section-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.dashboard-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.project-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.pc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.badge.bg-yellow-light { background: var(--yellow-light); color: #B45309; }
.badge.bg-blue-light { background: #EFF6FF; color: #1D4ED8; }
.badge.bg-red-light { background: #FEF2F2; color: #B91C1C; }

.pc-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
}
.pc-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pc-progress {
    margin-top: auto;
}
.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}
.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 16px;
}
.progress-fill {
    height: 100%;
    border-radius: 3px;
}
.progress-fill.yellow { background: var(--success); }
.progress-fill.green { background: var(--success); }
.progress-fill.blue { background: var(--info); }
.progress-fill.red { background: var(--danger); }

.pc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
}
.pc-avatars {
    display: flex;
}
.pc-avatars .avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid white;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}
.pc-avatars .avatar-sm:first-child { margin-left: 0; }

/* Progresso dos Projetos */
.progresso-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}
.progresso-filters {
    display: flex;
    gap: 12px;
}
.filter-pill {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.filter-pill.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

/* Histórico de Atividades */
.atividades-layout {
    display: flex;
    gap: 32px;
}
.atividades-main {
    flex: 7;
}
.atividades-sidebar {
    flex: 3;
}

.timeline {
    position: relative;
    padding-left: 20px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-group {
    margin-bottom: 32px;
}
.timeline-date {
    display: inline-block;
    padding: 6px 16px;
    background: var(--yellow-light);
    color: #B45309;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 20px;
    margin-left: 12px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    position: relative;
    padding-left: 48px;
    margin-bottom: 24px;
}
.timeline-icon {
    position: absolute;
    left: -7px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 4px solid var(--bg-main);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timeline-icon .material-icons-round {
    font-size: 14px;
    color: white;
}

.tl-card {
    padding: 20px;
}
.tl-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.tl-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.tl-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 600;
}

.summary-card {
    padding: 24px;
    margin-bottom: 24px;
}
.summary-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.summary-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}
.summary-stat {
    flex: 1;
    text-align: center;
    padding: 16px;
    background: var(--bg-main);
    border-radius: var(--border-radius-sm);
}
.summary-stat h2 {
    font-size: 2rem;
    color: var(--navy);
}
.summary-stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.filter-group-vertical {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Documentos */
.doc-top-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--navy);
    color: white;
    padding: 16px 24px;
    border-radius: var(--border-radius);
    margin-left: auto;
}
.doc-top-card .icon {
    color: var(--yellow);
}
.doc-top-card h3 {
    font-size: 1.25rem;
}
.doc-top-card span {
    color: #9CA3AF;
    font-size: 0.85rem;
}
.doc-progress {
    width: 150px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin-top: 8px;
}
.doc-progress-fill {
    height: 100%;
    background: var(--yellow);
    width: 45%;
    border-radius: 2px;
}

.doc-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.doc-filter-pill {
    padding: 8px 24px;
    border-radius: 24px;
    background: white;
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
}
.doc-filter-pill.active {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
}
.doc-table th {
    text-align: left;
    padding: 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}
.doc-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}
.doc-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}
.doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.doc-icon.pdf { background: #FEF2F2; color: #DC2626; }
.doc-icon.excel { background: #ECFDF5; color: #059669; }
.doc-icon.word { background: #EFF6FF; color: #2563EB; }

.doc-name h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}
.doc-name span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.doc-category {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #EFF6FF;
    color: #2563EB;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 90;
    transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 0px;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 280px; /* Fixed width when open */
        box-shadow: none;
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0,0,0,0.3);
    }

    .main-content {
        margin-left: 0;
    }

    #menu-toggle {
        display: flex;
    }

    .top-header {
        padding: 0 16px;
    }

    .search-container {
        width: 180px;
    }

    .view-container {
        padding: 20px 16px;
    }

    .atividades-layout {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .auth-wrapper {
        flex-direction: column;
    }

    .auth-left {
        display: none;
    }

    .auth-header-mobile {
        display: block;
        text-align: center;
        margin-bottom: 24px;
    }

    .doc-top-card {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
    }

    .header-right {
        gap: 12px;
    }

    .user-name {
        display: none; /* Hide name on small screens, keep only avatar */
    }
}

@media (max-width: 480px) {
    .search-container {
        display: none; /* Hide search on very small screens to save space */
    }
    
    .page-title {
        font-size: 0.9rem;
    }
}

/* DARK MODE */
body.dark-mode { --bg-main: #0F172A; --card-bg: #1E293B; --border-color: #334155; --text-main: #F1F5F9; --text-muted: #94A3B8; --bg-light: #0F172A; }

/* Premium Timeline & Pipeline */
.timeline-vertical {
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
}

.timeline-vertical::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--navy);
    z-index: 1;
}

.pipeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    padding: 0 10px;
}

.pipeline::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #E5E7EB;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #E5E7EB;
    border: 4px solid white;
    box-shadow: 0 0 0 1px #E5E7EB;
}

.step.active .step-dot {
    background: var(--yellow);
    box-shadow: 0 0 0 2px var(--yellow);
}

.step-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.step.active .step-label {
    color: var(--navy);
}

/* Modal Overlay & Centering */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    backdrop-filter: blur(4px);
    padding: 20px;
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 750px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.timeline-vertical {
    position: relative;
    border-left: 2px solid #E2E8F0;
    margin-left: 15px;
    padding-left: 25px;
}

.timeline-vertical .timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-vertical .timeline-dot {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--yellow);
    z-index: 2;
}
