/* Timeline Page Layout */
.timeline-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.timeline-header {
    margin-bottom: 2rem;
}

.timeline-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Table Styles */
.engineering-timeline {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ddd;
}

.engineering-timeline thead {
    background: #f5f5f5;
    border-bottom: 2px solid #ddd;
}

.engineering-timeline thead th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.engineering-timeline tbody tr {
    border-bottom: 1px solid #eee;
}

.engineering-timeline tbody tr:hover {
    background-color: #fafafa;
}

.engineering-timeline td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

/* Column Widths */
.col-date {
    width: 120px;
    color: #666;
    font-family: monospace;
}

.col-record {
    width: auto;
}

.col-project {
    width: 200px;
}

.col-status {
    width: 140px;
}

/* Record Link - Make it obviously clickable */
.record-link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 500;
}

.record-link:hover {
    color: #004499;
}

/* Project Tags - Keep the light blue */
.project-tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #e3f2fd;
    color: #1565c0;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    margin-right: 0.4rem;
    margin-bottom: 0.2rem;
    border: 1px solid #bbdefb;
}

.project-tag:hover {
    background: #bbdefb;
    color: #0d47a1;
    text-decoration: underline;
}

.no-project {
    color: #999;
}

/* Status Text */
.status-badge {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-page {
        padding: 1rem;
    }

    .engineering-timeline {
        font-size: 0.85rem;
    }

    .engineering-timeline thead th,
    .engineering-timeline td {
        padding: 0.5rem;
    }

    .col-date {
        width: 90px;
    }

    .col-project {
        width: 150px;
    }

    .col-status {
        width: 110px;
    }
}