#agenda-page {
    font-family: "Open Sans", sans-serif;
}

#agenda-page .timeline-wrapper {
    position: relative;
    padding-left: 20px;
}

#agenda-page .timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 0;
    width: 2px;
    background: #e9ecef;
    border-radius: 2px;
}

#agenda-page .timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
}

#agenda-page .timeline-item:last-child {
    padding-bottom: 0;
}

#agenda-page .timeline-dot {
    position: absolute;
    left: -9px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--primary-maroon);
    z-index: 1;
}

#agenda-page .timeline-date {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#agenda-page .timeline-content {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

#agenda-page .timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
    border-color: transparent;
}

#agenda-page .custom-pagination .pagination {
     margin-bottom: 0;
}

#agenda-page .custom-pagination .page-item {
    margin: 0 4px;
}

#agenda-page .custom-pagination .page-link {
    border-radius: 8px;
    padding: 6px 12px;
}

