.timeline-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
}

.timeline-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.timeline-buttons button {
    padding: 5px 10px;
    font-size: 1em;
    cursor: pointer;
    background-color: #555;
    color: #e0e0ff;
    border: none;
    border-radius: 5px;
}

.timeline-buttons button.active {
    background-color: #00f6ff;
    color: #000;
}

.timeline-buttons button:disabled {
    background-color: #333;
    color: #777;
    cursor: not-allowed;
}

.timeline-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-select label {
    font-weight: bold;
    color: #e0e0ff;
}

.timeline-select select {
    padding: 5px;
    font-size: 1em;
    background-color: #222;
    color: #e0e0ff;
    border: 1px solid #555;
    border-radius: 5px;
}

.timeline-header {
    font-size: 1.5em;
    font-weight: bold;
    color: #00f6ff;
    margin-bottom: 1em;
    text-transform: uppercase;
}

.timeline-section {
    font-size: 1.2em;
    font-weight: bold;
    color: #9dfcff; /* Neon blue */
    text-transform: uppercase;
}

.timeline-divider {
    border: none;
    border-top: 2px solid #00f6ff; /* Neon blue */
    margin: 1em 0;
}

/* Circle colors */
.timeline-circle.ItemFound {
    background-color: #FDFD96; /* Pastel Yellow */
}

.timeline-circle.ItemLost {
    background-color: #000000; /* Black */
}

.timeline-circle.Thought {
    background-color: #AEC6CF; /* Pastel Blue */
}

.timeline-circle.Event {
    background-color: #B39EB5; /* Pastel Purple */
}

.timeline-circle.Health {
    background-color: #77DD77; /* Pastel Green */
}

.timeline-entry {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1em;
    position: relative;
    padding: 10px;
    background-color: rgba(63, 46, 72, 0.612);
    border-radius: 10px;
}

.timeline-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0; /* Prevent shrinking of the circle */
}

.timeline-year {
    font-size: 0.9em;
    font-weight: bold;
    margin-right: 10px;
    color: #e0e0ff;
    flex-shrink: 0; /* Prevent shrinking of the year text */
}

.timeline-description {
    flex-grow: 1;
    color: #e0e0ff;
}
