.page p {
    line-height: 1.5em;
    margin-bottom: 1em;
}

.page h1,
.page h2,
.page h3,
.page h4 {
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.page h2 {
    font-size: 2em;
}

.page h3 {
    font-size: 1.5em;
}

.page ul {
    list-style: circle;
    padding-left: 1em;
    margin-bottom: 1em;
}

.page table {
    border-spacing: 1;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative
}

.page table * {
    position: relative
}

.page table td,
.page table th {
    padding-left: 8px
}

.page table thead tr {
    height: 60px;
    background: #36304a
}

.page table tbody tr {
    height: 50px
}

.page table tbody tr:last-child {
    border: 0
}

.page table td,
.page table th {
    text-align: left
}

.page table td.l,
.page table th.l {
    text-align: right
}

.page table td.c,
.page table th.c {
    text-align: center
}

.page table td.r,
.page table th.r {
    text-align: center
}

.page th {
    font-size: 1em;
    color: #fff;
    line-height: 1.2;
}

.page tbody tr:nth-child(even) {
    background-color: #f5f5f5
}

.page tbody tr {
    font-family: OpenSans-Regular;
    font-size: 15px;
    color: gray;
    line-height: 1.2;
}

.page tbody tr:hover {
    color: #555;
    background-color: #e9e9e9;
    cursor: pointer
}

/* Prose styling for content */
.prose {
    max-width: 65ch;
}

.prose a {
    color: #3b82f6; /* blue-500 - regular link */
    text-decoration: underline;
}

.prose a:hover {
    color: #1d4ed8; /* blue-700 - hover link */
}

/* Meeting page styles */
.meeting-times-link {
    margin: 1rem 0 1.5rem 0;
    font-size: 1.5rem;
}

.meeting-times-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.meeting-times-link a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Style the summary marker */
details summary {
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

/* Rotate arrow when details is open */
details .expand-icon {
    transform: rotate(0deg);
    transition: transform 0.2s;
}

details[open] .expand-icon {
    transform: rotate(90deg);
}

/* Meeting list styling */
.meeting-list {
    list-style: decimal !important;
    list-style-type: decimal !important;
    padding-left: 1.5rem;
    margin: 0 0 0.5rem 3rem;
}

details[open] .meeting-list {
    background-color: #f9fafb;
    border-left: 3px solid #3b82f6;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    margin-left: 2rem;
}

.meeting-list li {
    padding: 0.5rem 0;
}

.meeting-list a {
    color: #3b82f6;
    text-decoration: none;
}

.meeting-list a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}
