/*!
Theme Name: Yoakum EDC
Author: Eisenberg Inc.
Version: 1.0.0
*/


.meeting-minutes-year {
    
    overflow: hidden;
}

.toggle-year {
    width: 100%;
    text-align: left;
    background: #A7BECE;
    color: #fff;
    padding: 3.8% 5.1%;
    font-size: 2.25rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px; /* Rounded corners for the top row */

}

.toggle-year:hover,
.toggle-year.active {
    background: #3F9EFD;
}

.toggle-year.active {
	 border-radius: 8px 8px 0 0;
}

.meeting-minutes-content {
    background: #A7BECE;
    padding: 1.9% 5.1% 3.8%;
    border-radius: 0 0 8px 8px; /* Rounded corners for the bottom when expanded */
}

.meeting-minutes-table {
    width: 100%;
    border-collapse: collapse;
}

.meeting-minutes-table th,
.meeting-minutes-table td {
    text-align: left;
}

.meeting-minutes-table th {
    background: #3F9EFD;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1% 7%;
}

.meeting-minutes-table td {
	 padding: 4% 7%;
    background: #EAF2FA;
    border-bottom: 20px solid #A7BECE; /* Simulated row spacing using border */
    font-size: 1.563rem;
}

.meeting-minutes-table td a {
	text-decoration: underline;
}

.meeting-minutes-table td a:hover {
	color: var(--orange);
}

.meeting-minutes-table tbody tr:first-child td {
    border-top: none; /* Ensure no extra spacing at the top of the body */
}
}

.meeting-minutes-table th {
    background: #3F9EFD;
    color: #fff;
    text-align: left;
    padding: 8px;
 
}

.meeting-minutes-table thead tr th:first-child {
    border-top-left-radius: 8px;
}

.meeting-minutes-table thead tr th:last-child {
    border-top-right-radius: 8px;
}



.meeting-minutes-table tbody tr td:first-child {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.meeting-minutes-table tbody tr td:last-child {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}


.meeting-minutes-table tbody tr:first-child td:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 20px;
}

.meeting-minutes-table tbody tr:first-child td:last-child {
    border-top-right-radius:0;
    border-bottom-right-radius: 20px;
}


@media (max-width: 992px) { 

	.meeting-minutes-table td {
		font-size: 1rem;
	}

}


@media (max-width: 650px) { 

	.meeting-minutes-table td,
	.meeting-minutes-table th {
		font-size: 0.85rem;
	}



}
