.timeline-3265d00d-wrapper {
    position: relative;
    width: 100%;
    margin: 40px 0;
    display: flex;
    align-items: center;
}

.timeline-3265d00d-scroll-area {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    cursor: grab;
    user-select: none;
    padding: 30px 10px;
}

.timeline-3265d00d-scroll-area:active {
    cursor: grabbing;
}

.timeline-3265d00d-scroll-area::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.timeline-3265d00d-track {
    position: relative;
    display: flex;
    align-items: center;
    min-width: max-content;
    padding: 100px 50px;
}

/* Horizontal Central Line */
.timeline-3265d00d-main-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-3265d00d-event {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* Event layouts (top vs bottom) */
.timeline-3265d00d-pos-top {
    justify-content: flex-end;
}

.timeline-3265d00d-pos-bottom {
    justify-content: flex-start;
}

/* Circular Marker */
.timeline-3265d00d-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border-style: solid;
    border-width: 4px;
    z-index: 3;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background-color: #3b82f6;
    border-color: #ffffff;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.timeline-3265d00d-event:hover .timeline-3265d00d-marker {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

.timeline-3265d00d-marker svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
}

/* Connectors */
.timeline-3265d00d-connector {
    width: 2px;
    height: 40px;
    background-color: #3b82f6;
    opacity: 0.7;
    position: relative;
}

/* Card Styling */
.timeline-3265d00d-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 100%;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-3265d00d-event:hover .timeline-3265d00d-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
}

.timeline-3265d00d-pos-bottom:hover .timeline-3265d00d-card {
    transform: translateY(5px);
}

.timeline-3265d00d-date {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: #3b82f6;
}

.timeline-3265d00d-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1e293b;
}

.timeline-3265d00d-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: #64748b;
}

/* Navigation Buttons */
.timeline-3265d00d-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.timeline-3265d00d-nav:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-50%) scale(1.05);
}

.timeline-3265d00d-nav svg {
    width: 24px;
    height: 24px;
    fill: #1e293b;
}

.timeline-3265d00d-prev {
    left: -15px;
}

.timeline-3265d00d-next {
    right: -15px;
}

@media (max-width: 767px) {
    .timeline-3265d00d-nav {
        display: none !important;
    }
}
