<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dark {
    --bg-color: #000;
    --bg-secondary-color: #131316;
    --font-color: #f5f5f5;
    --color-grey: #ccc;
    --color-darkGrey: #777;
}

.footer-wrapper {
    border-top-color: rgb(51, 51, 51);
    border-top-style: solid;
    border-top-width: 1px;
    padding: 1em;
}

.quote-card {
    margin: .75em;
    border-style: solid;
    border-width: 1px;
}

.quote-card:hover {
    opacity: 0.75;
}

.site-banner {
    margin: 0 auto;
    margin-top: .5em;
}

.base-align {
    align-items: baseline;
}

.flex-center {
    align-items: center;
}

.ccc-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 5rem;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: baseline;
    justify-content: space-between;
}

.post {
    margin-bottom: 1rem;
}

.posted-date {
    font-size: 0.725em;
    color:var(--color-darkGrey);
    margin-bottom: 4px;
}

.img-wrap {
    margin: 1rem;
}

/* Code Blocks */
.code-container {
    width: 100%;    /* Ensure the container adapts to the screen */
    overflow-x: hidden;     /* Prevent unwanted scrolling on the body */
}

.one-liner {
    width: 600px;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    font-family: "Consolas", "Cascadia Mono", "Lucida Console", "Courier New", monospace;
    background-color: var(--bg-secondary-color);
    color: var(--color-error);
    padding: 4px;
}

/* Music Page */
.scrollwrapper {
    overflow: auto;
}

table.music {
    width: 100%;
    /* border: 1px solid hotpink; */
    table-layout: fixed;
}

col.artist {
    width: 30%;
}

col.song {
    width: 50%;
}

col.date {
    width: 20%;
}

#resultsCount {
    display: inline-block;
    min-width: 4ch; /* May need to be adjusted if results exceed  4chars (1000) */
    text-align: right; /* Ensures numbers align neatly */
}

#resultsPane {
    display: inline-flex;
    align-items: center;
    gap: 4px; /* Adds spacing between number and "results" */
    min-width: 120px; /* Ensures button width remains stable */
    justify-content: center;
}

/* Debug Utilities */
.pb {
    border: 1px solid hotpink;
}

.r {
    background-color: red;   
}
.b {
    background-color: blue;   
}
.g {
    background-color: greenyellow;   
}
</pre></body></html>