.meeting-minutes-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligns items to the top */
}

.column {
    width: 48%;
    padding: 30px;
    box-sizing: border-box;
}
.meeting-minutes-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligns items to the top */
}

.column {
    width: 48%;
    padding: 10px;
    box-sizing: border-box;
}

/* New CSS for line wrapping on headings */
.column h2 {
    max-width: 400px; /* Adjust this width as needed */
    word-wrap: break-word; /* Forces line breaks within the max width */
    text-align: left; /* Center-aligns the heading text */
}

.year-section h3 {
    cursor: pointer;
    font-size: 1.2em;
    margin: 0;
}

.minutes-list {
    list-style-type: none;
    padding: 0;
    display: none; /* Hide the list by default */
}

.minutes-list li {
    margin: 5px 0;
}

.minutes-list li a {
    color: #333;
    text-decoration: none;
    font-size: 1em;
}

.minutes-list li a:hover {
    color: #FF6347;
}



.year-section h3 {
    cursor: pointer;
    font-size: 1.2em;
    margin: 0;
}

.minutes-list {
    list-style-type: none;
    padding: 0;
    display: none; /* Hide the list by default */
}

.minutes-list li {
    margin: 5px 0;
}

.minutes-list li a {
    color: #333;
    text-decoration: none;
    font-size: 1em;
}

.minutes-list li a:hover {
    color: #FF6347;
}


