/* Style untuk Halaman Kepanitiaan */
.timeline {
    position: relative;
    padding: 20px 0;
}

/\* Garis vertikal di tengah \*/
.timeline::before {
content: '';
position: absolute;
top: 0;
left: 20px;
height: 100%;
width: 4px;
background: \#e9ecef;
border-radius: 2px;
}

.timeline-item {
position: relative;
margin-bottom: 30px;
padding-left: 50px; /\* Jarak dari garis timeline \*/
}

/\* Titik di garis timeline */
.timeline-dot {
position: absolute;
left: 10px;
top: 5px;
width: 24px;
height: 24px;
border-radius: 50%;
background-color: white;
border: 4px solid \#107C41; /* Hijau Kemenag \*/
z-index: 1;
}

.timeline-card {
background: \#ffffff;
border-radius: 8px;
padding: 25px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
border: 1px solid \#dee2e6;
}

.timeline-header {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid \#f1f1f1;
padding-bottom: 15px;
margin-bottom: 15px;
}

.timeline-header h2 {
margin: 0;
color: \#107C41;
font-size: 1.5em;
}

.event-date {
background-color: \#e8f5e9;
color: \#107C41;
padding: 5px 15px;
border-radius: 15px;
font-weight: 600;
font-size: 0.9em;
white-space: nowrap;
}

.committee-list {
list-style: none;
padding: 0;
margin: 0;
}

.committee-list li {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px dashed \#e9ecef;
}

.committee-list li:last-child {
border-bottom: none;
}

.committee-list .role {
font-weight: 600;
color: \#495057;
}

.committee-list .name {
color: \#6c757d;
}

/\* Responsive \*/
@media (max-width: 768px) {
.timeline-header {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.timeline::before {
left: 10px;
}
.timeline-item {
padding-left: 40px;
}
.timeline-dot {
left: 0px;
}
}