body {
    padding-top: 60px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #0255ae;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-start {
    width: 20px;
    height: 20px;
    background-color: #007bff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mt-6{
    margin-top: 3rem;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #007bff;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid #007bff;
    border-radius: 50%;
    z-index: 1;
    top: 15px;
}

.left::after {
    right: -10px;  /* Adjusted from -14px to -13px */
}

.right::after {
    left: -10px;  /* Kept at -13px */
}
.left {
    left: 0;
}
.right {
    left: 50%;
}
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #f8f9fa;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f8f9fa;
}
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #f8f9fa;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f8f9fa transparent transparent;
}


.timeline-content {
    padding: 20px 30px;
    background-color: #f8f9fa;
    position: relative;
    border-radius: 6px;
}
.timeline-date {
    font-weight: bold;
    margin-bottom: 10px;
}
.timeline-title {
    font-size: 1.2em;
    margin-bottom: 10px;
}
.timeline-description {
    margin-bottom: 10px;
}
.timeline-meta {
    font-size: 0.9em;
    color: #6c757d;
}

.edit-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.edit-form {
    display: none;
}

.timeline-content {
    padding: 20px 30px;
    position: relative;
    border-radius: 6px;
}
.status-Confirmed { background-color: #d4edda; }
.status-In-Doubt { background-color: #fff3cd; }
.status-Unlikely { background-color: #fff5e6; }
.status-Proven-False { background-color: #f8d7da; }
.edit-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.edit-form {
    display: none;
}

.status-Note {
    background-color: #f0f0f0; /* Light grey color for Note status */
}
.left .status-Note::before {
    border-color: transparent transparent transparent #f0f0f0;
}
.right .status-Note::before {
    border-color: transparent #f0f0f0 transparent transparent;
}

.white-link {
    color: white;
}