/* All the CSS styles go here */
.committee-summaries {
    list-style: none;
    padding: 0;
    margin: 0;
}

.committee-summary-item {
    display: flex;
    flex-direction: column;
    padding: 20px 0 20px 60px; /* Add left padding for circle */
    position: relative;
    cursor: pointer;
}

/* Create the yellow circle */
.committee-summary-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px; /* Match top padding */
    width: 40px;
    height: 40px;
    background-color: #FFD700; /* Yellow circle */
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

/* Container for all the text divs */
.committee-summary-item > div {
    color: #000000;
    transition: color 0.3s ease;
    margin-bottom: 5px; /* Space between stacked elements */
}

/* Remove margin from last element */
.committee-summary-item > div:last-child {
    margin-bottom: 0;
}

/* Committee name styling */
.committee-name {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Date styling */
.committee-date {
    font-size: 16px;
    margin-bottom: 4px;
}

/* Timestamp styling */
.committee-timestamp {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Summary text styling */
.committee-text {
    font-size: 16px;
    line-height: 1.4;
}

/* Hover states */
.committee-summary-item:hover::before {
    background-color: #666666; /* Dark gray circle on hover */
}

.committee-summary-item:hover > div {
    color: #666666; /* Dark gray text on hover */
}

/* Optional: Add some spacing between items */
.committee-summary-item + .committee-summary-item {
    margin-top: 30px; /* Increased spacing between items */
}
/* ... rest of the CSS ... */ 