<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --ldms-table-border-radius: 0.25rem;
}

:where(.wp-site-blocks)&gt;* {
    margin-block-start: 0 !important;
}

.wp-site-blocks {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 1 0%;
}

.wp-site-blocks&gt;.wp-block-template-part:first-child {
    position: sticky;
    top: 0;
    background-color: var(--wp--preset--color--gray-00);
    z-index: 999999;
}

.ldms-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.ldms-table thead th {
    background-color: var(--wp--preset--color--gray-01);
    text-align: left;
}

.ldms-table th,
.ldms-table td {
    border: solid 1px var(--wp--preset--color--gray-02);
    border-style: none solid solid none;
    padding: 1rem;
}

.ldms-table tr:first-child th:first-child {
    border-top-left-radius: var(--ldms-table-border-radius);
}

.ldms-table tr:first-child th:last-child {
    border-top-right-radius: var(--ldms-table-border-radius);
}

.ldms-table tr:last-child td:first-child {
    border-bottom-left-radius: var(--ldms-table-border-radius);
}

.ldms-table tr:last-child td:last-child {
    border-bottom-right-radius: var(--ldms-table-border-radius);
}

.ldms-table tr:first-child th {
    border-top-style: solid;
}

.ldms-table tr td:first-child {
    border-left-style: solid;
}


a:where(:not(.wp-element-button)),
a:where(:not(.wp-element-button)):visited {
    color: var(--wp--preset--color--blue-03);
}

a:where(:not(.wp-element-button)):hover,
a:where(:not(.wp-element-button)):visited:hover,
a:where(:not(.wp-element-button)):focus,
a:where(:not(.wp-element-button)):visited:focus {
    color: var(--wp--preset--color--blue-02);
}

@media screen and (max-width: 600px) {
    .mobile-text-center {
        text-align: center !important;
    }
}</pre></body></html>