/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --white: #ffffff;
    --black: #000000;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: var(--gray-800);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 0 40px;
    color: white;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content h1 i {
    margin-right: 15px;
    color: var(--secondary-color);
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Upload Section */
.upload-section {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    margin-bottom: 40px;
    overflow: hidden;
}

.upload-container {
    padding: 40px;
}

.upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background-color: var(--gray-50);
}

.upload-area.dragover {
    border-color: var(--primary-color);
    background-color: rgba(99, 102, 241, 0.05);
}

.upload-content {
    max-width: 400px;
    margin: 0 auto;
}

.upload-icon {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.upload-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.upload-content p {
    color: var(--gray-600);
    margin-bottom: 5px;
}

.upload-content small {
    color: var(--gray-500);
    display: block;
    margin-bottom: 30px;
}

.upload-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.upload-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* File Info */
.file-info {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin-top: 20px;
}

.file-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.file-details i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.file-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 500;
    color: var(--gray-800);
}

.file-size {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.remove-file {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.remove-file:hover {
    color: var(--danger-color);
    background: var(--gray-200);
}

.analyze-btn {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

.analyze-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* Loading Section */
.loading-section {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    margin-bottom: 40px;
    padding: 60px 40px;
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.loading-container p {
    color: var(--gray-600);
    margin-bottom: 40px;
}

.loading-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: var(--transition);
}

.step.active {
    opacity: 1;
}

.step i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.step span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Results Section */
.results-section {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    margin-bottom: 40px;
    overflow: hidden;
}

.results-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.results-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-actions {
    display: flex;
    gap: 12px;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Project Overview */
.project-overview {
    padding: 40px;
    border-bottom: 1px solid var(--gray-200);
}

.overview-card {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 30px;
}

.overview-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-content {
    color: var(--gray-700);
    line-height: 1.8;
}

/* Timeline */
/* Product Roadmap Timeline View */
.roadmap-container {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.roadmap-container h3 {
    color: var(--gray-800);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.roadmap-container h3 i {
    color: var(--primary-color);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.timeline-header-label {
    min-width: 120px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    text-align: right;
    padding-right: 1rem;
}

.timeline-quarters {
    flex: 1;
    display: flex;
    height: 40px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid var(--gray-200);
    min-width: 0;
}

.quarter {
    flex: 1;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.quarter:last-child {
    border-right: none;
}

.quarter:nth-child(1) {
    background: rgba(99, 102, 241, 0.1);
    color: #4338ca;
}

.quarter:nth-child(2) {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
}

.quarter:nth-child(3) {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
}

.quarter:nth-child(4) {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
}

.timeline-category {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.category-label {
    min-width: 120px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: right;
    padding-right: 1rem;
}

.timeline-track {
    flex: 1;
    height: 40px;
    background: var(--gray-100);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.timeline-track .quarter-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--gray-300);
    z-index: 1;
}

.timeline-bar {
    height: 100%;
    border-radius: 6px;
    position: absolute;
    top: 0;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 2;
    margin: 2px;
    height: calc(100% - 4px);
}

.timeline-bar:hover {
    transform: scaleY(1.1);
    box-shadow: var(--shadow-md);
}

/* Cores específicas para cada categoria */
.timeline-category:nth-child(1) .timeline-bar {
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
}

.timeline-category:nth-child(2) .timeline-bar {
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

.timeline-category:nth-child(3) .timeline-bar {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.timeline-category:nth-child(4) .timeline-bar {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.timeline-category:nth-child(n+5) .timeline-bar {
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
}

/* Diferentes durações e posições para simular timeline real */
.timeline-category:nth-child(1) .timeline-bar {
    left: 0%;
    width: 75%;
}

.timeline-category:nth-child(2) .timeline-bar {
    left: 5%;
    width: 85%;
}

.timeline-category:nth-child(3) .timeline-bar {
    left: 15%;
    width: 60%;
}

.timeline-category:nth-child(4) .timeline-bar {
    left: 20%;
    width: 70%;
}

/* Tasks - Estilo Trello */
.tasks-container {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.tasks-container h3 {
    color: var(--gray-800);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tasks-container h3 i {
    color: var(--primary-color);
}

.tasks-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.task-category {
    background: #f8f9fa;
    border-radius: var(--border-radius-lg);
    min-width: 300px;
    max-width: 320px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.task-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    background: white;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.category-icon {
    width: 2rem;
    height: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    flex: 1;
}

.task-count {
    background: var(--gray-200);
    color: var(--gray-600);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 1.5rem;
    text-align: center;
}

.task-list {
    list-style: none;
    padding: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
}

.task-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.task-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-1px);
    border-color: var(--primary-color);
}

.task-item.completed {
    opacity: 0.7;
    background: #f8f9fa;
}

.task-content {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.task-checkbox {
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.125rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-checkbox.checked {
    background: var(--success-color);
    border-color: var(--success-color);
}

.task-checkbox.checked::after {
    content: '✓';
    color: white;
    font-size: 0.625rem;
    font-weight: bold;
}

.task-info {
    flex: 1;
    min-width: 0;
}

.task-text {
    color: var(--gray-700);
    line-height: 1.4;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.task-text.completed {
    text-decoration: line-through;
    color: var(--gray-500);
}

.task-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.task-priority {
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.priority-high {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.priority-medium {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.priority-low {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.task-date {
    font-size: 0.625rem;
    color: var(--gray-500);
}

/* Scrollbar personalizada para listas de tarefas */
.task-list::-webkit-scrollbar {
    width: 4px;
}

.task-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.task-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.task-list::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: white;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
    
    .upload-container {
        padding: 20px;
    }
    
    .upload-area {
        padding: 40px 20px;
    }
    
    .loading-steps {
        gap: 20px;
    }
    
    .results-header {
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .results-actions {
        justify-content: center;
    }
    
    .project-overview, .roadmap-container, .tasks-container {
        padding: 20px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        margin-left: 15px;
        padding: 20px;
    }
    
    .timeline-item::before {
        left: -28px;
    }
    
    .tasks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 0 30px;
    }
    
    .upload-content {
        padding: 0;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .loading-steps {
        flex-direction: column;
        align-items: center;
    }
}

/* Header atualizado */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-main {
    flex: 1;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.config-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--gray-600);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.config-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    color: var(--gray-800);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gray-600);
    background: var(--gray-100);
}

.modal-body {
    padding: 1.5rem;
}

.config-section {
    margin-bottom: 2rem;
}

.config-section:last-child {
    margin-bottom: 0;
}

.config-section h4 {
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.config-section p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.config-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.api-status {
    margin-top: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.config-section ol {
    color: var(--gray-600);
    padding-left: 1.5rem;
}

.config-section ol li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

.config-section a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .config-actions {
        flex-direction: column;
    }
    
    /* Roadmap responsivo */
    .timeline {
        padding: 1rem 0;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-header-label {
        min-width: 100%;
        text-align: left;
        padding-right: 0;
        font-size: 0.875rem;
    }
    
    .timeline-quarters {
        height: 35px;
    }
    
    .quarter {
        font-size: 0.7rem;
    }
    
    .timeline-category {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .category-label {
        min-width: 100%;
        text-align: left;
        padding-right: 0;
        font-size: 0.875rem;
    }
    
    .timeline-track {
        height: 35px;
    }
    
    .timeline-bar {
        font-size: 0.7rem;
    }
    
    /* Tasks responsivo */
    .tasks-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .task-category {
        min-width: 100%;
        max-width: 100%;
    }
    
    .task-list {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .roadmap-container,
    .tasks-container {
        padding: 1rem;
    }
    
    .timeline-header {
        margin-bottom: 1rem;
    }
    
    .timeline-quarters {
        height: 30px;
    }
    
    .quarter {
        font-size: 0.65rem;
    }
    
    .timeline-category {
        margin-bottom: 0.75rem;
    }
    
    .category-label {
        font-size: 0.8rem;
    }
    
    .timeline-track {
        height: 30px;
    }
    
    .timeline-bar {
        font-size: 0.65rem;
    }
}
