<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Basic Table Styling */
.moa-cpd-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.moa-cpd-table th,
.moa-cpd-table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

.moa-cpd-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.moa-cpd-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Filter Controls */
.moa-cpd-filters {
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
}

.moa-cpd-filters label {
    margin-right: 15px;
    display: inline-block;
}

.moa-cpd-search,
.moa-cpd-date-filter,
.moa-cpd-area-filter {
    margin-bottom: 10px;
}

/* Pagination */
.moa-cpd-pagination {
    margin: 20px 0;
    text-align: center;
}

.moa-cpd-pagination a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #ddd;
    text-decoration: none;
}

.moa-cpd-pagination a.moa-cpd-current-page {
    background-color: #f2f2f2;
    font-weight: bold;
}

.moa-cpd-pagination .moa-cpd-ellipsis {
    display: inline-block;
    padding: 5px;
}

/* Table Info */
.moa-cpd-table-info {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

/* Custom Date Mode */
.moa-cpd-date-filter.custom-date-mode .moa-cpd-custom-dates {
    display: block;
}

.moa-cpd-custom-dates {
    display: none;
    margin-top: 10px;
}

/* Download Button */
.moa-cpd-download-btn {
    display: inline-block;
    margin-top: 20px;
}</pre></body></html>