<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: "Quattrocento Sans";
    font-style: normal;
    font-weight: 400;
    src:
        url(/app/pub/assets/css/fonts/QuattrocentoSans-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Quattrocento Sans";
    font-style: normal;
    font-weight: 700;
    src:
        url(/app/pub/assets/css/fonts/QuattrocentoSans-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "Quattrocento Sans";
    font-style: italic;
    font-weight: 400;
    src:
        url(/app/pub/assets/css/fonts/QuattrocentoSans-Italic.ttf) format("truetype");
}

@font-face {
    font-family: "Quattrocento Sans";
    font-style: italic;
    font-weight: 700;
    src:
        url(/app/pub/assets/css/fonts/QuattrocentoSans-BoldItalic.ttf) format("truetype");
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-readonly: #333333;
    --bg-header: #33333355;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-readonly: #898989;
    --accent: #7289da;
    --border: #333333;
    --dark-text-for-light-bg: #121212;
    --kick-green: rgb(83, 252, 24);
    --kick-green-gradient-end: rgb(147, 238, 115);
    --twitch-purple: #bf94ff;
    --twitch-purple-gradient-end: #a970ff;
    --border-radius: 4px;
    --tooltip-icon-color: #e22b2b;
    --tooltip-bg: #333333;
    --tooltip-color: #ffffff;
}

.quattrocento-sans-regular {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.quattrocento-sans-bold {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.quattrocento-sans-regular-italic {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.quattrocento-sans-bold-italic {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 700;
    font-style: italic;
}

* {
    font-family: "Quattrocento Sans", sans-serif;
}

html {
    font-size: 16px;
    font-family: "Quattrocento Sans", sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
}

#backdrop {
    position: fixed;
    top: -200%;
    left: -200%;
    width: 500%;
    height: 500%;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(14, 31, 53) 50%, rgb(0, 0, 0) 100%);
    transition: transform 10s ease-in-out;
    z-index: -999;
}

div#overlay {
    background: #0000009c;
    z-index: 99;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
}

body.menu-active #overlay {
    display: block !important;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 em,
h2 em {
    font-style: normal;
    color: var(--accent);
}

h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.5rem;
    margin: 2rem 0 1rem 0;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

.mobile-only {
    display: none !important;
}

header {
    background-color: var(--bg-header);
    padding: .5rem 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    border-radius: var(--border-radius);
    position: fixed;
    margin: -60px 3%;
    backdrop-filter: blur(16px);
    height: 60px;
    z-index: 9999;
    width: 94%;
}

.menu {
    order: 2;
    flex-grow: 1;
}

.menu .mobile-btn {
    fill: var(--text-primary);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: none;
}

.menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    flex-direction: row;
    justify-content: center;
}

.menu li a,
#accountMenu li a {
    color: var(--text-primary);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: background-color 0.2s ease;
    text-align: center;
}

.menu li a,
#accountMenu li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0.5rem 1rem;
}

.menu li a:hover,
#accountMenu li a:hover {
    background-color: var(--accent);
}

.logo {
    order: 1;
    position: relative;
}

.logo svg {
    height: 55px;
}

.logo-fill {
    fill: var(--text-primary);
}

.logo a:hover .logo-fill {
    fill: var(--accent);
}

.logo::after {
    content: "BETA";
    color: var(--text-secondary);
    position: absolute;
    right: 0px;
    bottom: 0px;
    font-size: 8pt;
}

.account {
    order: 3;
}

.account p {
    margin: 0;
}

.profile-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--accent);
    border-radius: 50%;
    text-align: center;
    color: var(--text-primary);
    font-weight: bold;
}

#accountMenu .profile-circle {
    cursor: pointer;
}

#accountMenu nav {
    display: none;
}

#accountMenu nav {
    flex-direction: column;
    align-items: center;
}

#accountMenu ul {
    flex-direction: column;
    gap: 0rem;
    width: 100%;
    list-style: none;
    padding: 0;
    display: flex;
}

#accountMenu li {
    width: 100%;
    text-align: center;
}

#accountMenu li a {
    width: 100%;
    padding: 1rem 2.5rem;
    background-color: var(--bg-primary);
    border-radius: var(--border-radius);
    outline: 1px solid var(--border);
    z-index: 999;
    margin-top: 7px;
    box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, 0.3);
    min-width: 170px;
}

#accountMenu.active nav {
    display: flex;
    position: absolute;
    top: 59px;
    right: 0px;
    z-index: 999;
}

.app-message {
    position: relative;
    background-color: var(--accent);
    color: var(--dark-text-for-light-bg);
    padding: 1rem 1rem 1rem 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-weight: 200;
    font-size: 1.25rem;
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
}

.app-message::before {
    content: ' ';
    background: rgba(255, 255, 255, .8);
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 100%;
    border-radius: var(--border-radius) 0px 0px var(--border-radius);
}

.app-message-warning {
    background-color: #f3dc6b
}

.app-message-error {
    background-color: #ed7979
}

.app-message-success {
    background-color: #83cd3f
}

.app-message-info {
    background-color: #c1bdb0
}

p.back-link {
    margin-top: -0.5rem;
}

.content {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.content .flex {
    flex: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.flex-full {
    flex: 0 0 100%;
}

.flex-col {
    flex: 1;
    min-width: 300px;
}

.content img {
    max-width: 70vw;
    max-height: 50vh;
}

table.table-rounded {
    /*border-radius: 8px;
    width: 100%;
    border: 1px solid #ffffff;*/

    border-radius: var(--border-radius);
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

table.table-padded {
    padding: .5rem;
}

table.table-padded-x {
    padding: 1rem;
}

table.table-padded td {
    padding: .5rem 1rem;
}

table.table-padded-x td {
    padding: 1rem 2rem;
}

table {
    border-spacing: 0;
    width: 100%;
}

table.table-content-centered td,
table.table-content-centered td.th {
    text-align: center;
}

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

table.table-content-right td,
table.table-content-right td.th {
    text-align: right;
}

td.th {
    font-weight: 700;
    text-align: center;
}

footer {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn {
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border: none;
    transition: background-color 0.2s ease, color 0.2s ease,
        outline-color 0.2s ease;
    line-height: 1.5rem;
    outline-style: solid;
    outline-color: var(--accent);
    outline-width: 2px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    display: inline-block;

    color: var(--text-primary);
    background-color: var(--accent);
    outline-color: var(--accent);
}

.btn-primary {
    color: var(--text-primary);
    background-color: var(--accent);
    outline-color: var(--accent);
}

.btn-secondary {
    color: var(--text-secondary);
    background-color: transparent;
    outline-color: var(--border);
}

.btn-tertiary {
    color: var(--text-secondary);
    background-color: transparent;
    outline-color: transparent;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary:hover {
    text-decoration: underline;
}

.btn-secondary:hover {
    outline-color: var(--accent);
}

.btn-tertiary:hover {
    outline-color: var(--border);
}

.btn-login-oauth {
    color: var(--text-primary);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: background-color 0.2s ease;
    display: inline-block;
    text-align: center;
    font-size: 1.2rem;
    padding: .5em 3em;
    margin-right: 1em;
}

.btn-login-oauth:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
}

.btn-login-kick {
    color: var(--dark-text-for-light-bg);
    background-color: var(--kick-green);
    background: linear-gradient(166deg, var(--kick-green), var(--kick-green-gradient-end));
}

.btn-login-twitch {
    color: var(--dark-text-for-light-bg);
    background-color: var(--twitch-purple);
    background: linear-gradient(166deg, var(--twitch-purple), var(--twitch-purple-gradient-end));
}

label .tooltip {
    width: 1px;
    height: 1px;
    content: '?';
    position: absolute;
    max-width: 250px;
    font-size: .8rem;
    border-radius: var(--border-radius);
    margin-left: 0rem;
    padding-top: 3rem;
    padding-left: 1rem;
    overflow: hidden;
    color: var(--tooltip-color);
    z-index: -99;
}

label.tooltip:hover .tooltip,
label.tooltip:active .tooltip,
label.tooltip:focus .tooltip {
    height: auto;
    max-width: 280px;
    width: auto;
    background: var(--tooltip-bg);
    color: inherit;
    padding: .5rem;
    z-index: 99;
}

label.tooltip::after {
    content: '?';
    color: var(--tooltip-icon-color);
    font-size: 1rem;
    position: absolute;
    margin-top: -.4rem;
    margin-left: .2rem;
}

formset {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.formset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.formset-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.formset-row label {
    font-weight: 500;
    color: var(--text-primary);
    align-items: center;
    gap: 0.5rem;
}

.formset-row input[type="text"],
.formset-row textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.formset-row input[type="text"]:disabled,
.formset-row input[type="text"][readonly] {
    background-color: var(--bg-readonly);
    color: var(--text-readonly);
    cursor: not-allowed;
}

input.click-to-copy {
    cursor: grab !important;
}

input.click-to-copy:active {
    cursor: grabbing !important;
}

.formset-row textarea {
    min-height: 100px;
    resize: vertical;
}

.formset-row input[type="text"]:focus,
.formset-row textarea:focus {
    border-color: var(--accent);
    outline: none;
}

.formset-row.buttons {
    justify-content: flex-end;
}

formset h2 {
    margin-top: 0;
    margin-bottom: -.5rem;
}

.checkbox-group,
.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0.5rem 0;
}

.checkbox-group label,
.input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.formset-row .checkbox-group label,
.formset-row .input-group label {
    width: auto;
}

.formset-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 40px;
    height: 20px;
    background-color: var(--border);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease;
}

.formset-row input[type="range"] {
    appearance: none;
    -webkit-appearance: none;
    height: 20px;
    background-color: var(--border);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    outline: none;
}

.formset-row input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.formset-row input[type="checkbox"]:checked {
    background-color: var(--accent);
}

.formset-row input[type="checkbox"]:checked::before {
    transform: translateX(20px);
    background-color: var(--text-primary);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.checkbox-group input[type="checkbox"]::before {
    width: 12px;
    height: 12px;
    top: 4px;
    left: 4px;
}

.checkbox-group input[type="checkbox"]:checked::before {
    transform: translateX(0);
    background: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"&gt;&lt;path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/&gt;&lt;/svg&gt;') center / 12px no-repeat;
}

.obscure {
    filter: blur(2px);
    transition: filter 0.1s ease-in !important;
}

.obscure:hover {
    filter: blur(0px);
    transition: filter 2s ease-in !important;
}

.clr-field input {
    width: 8em !important;
    height: 2em;
}

body.page_songs_play audio {
    max-width: 70vw;
    width: 100%;
}

.page_songs_play .content .song-holder {
    border: solid 1px var(--border);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem 1.5rem 2rem;
    background: var(--bg-secondary);
    gap: 1rem;
}

.song-holder h1 {
    margin: 0;
}

.song-holder h2 {
    margin-top: 0;
    color: var(--text-secondary);
    margin-bottom: 0;
}

body.page_songs_play .flex-col {
    text-align: center;
}

.song-art-and-audio audio {
    margin: 1rem 0;
}

.song-art-and-audio img {
    max-width: min(70vw, 360px);
}

table.song-list tbody img {
    max-width: 3rem;
    max-height: 3rem;
    margin-right: -1rem;
}

table.song-list tbody td {
    vertical-align: middle;
}

table.song-list tbody td:nth-child(2) {
    overflow-wrap: anywhere;
}

ul.channel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

ul.channel-list li {
    margin: 0;
    padding: 0;
    width: 276px;
    height: 120px;
    background-color: var(--bg-secondary)
}

ul.channel-list li a {
    color: var(--text-primary);
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    font-weight: 600;
    position: relative;
}

ul.channel-list li a:hover {
    background-color: var(--accent);
}

ul.channel-list li .title {
    position: absolute;
    top: 1rem;
    width: 100%;
    text-align: center;
}

ul.channel-list li .platform {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 1rem;
}

table.full-row-highlight tr {
    cursor: pointer;
}

table.full-row-highlight tbody tr:hover {
    background-color: var(--accent);
}

table.full-row-highlight .btn-secondary:hover {
    outline-color: var(--text-primary);
}

table.full-row-highlight td a {
    color: var(--primary-text);
    text-decoration: none;
}

.platform-kick {
    color: var(--kick-green)
}

.platform-twitch {
    color: var(--twitch-purple)
}

.page_account_index table {
    display: block;
    padding: .5rem;
}

.page_account_index table thead {
    display: none;
}

.page_account_index table tbody {
    display: block;
}

.page_account_index table tr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.page_account_index table td {
    display: block;
    width: 50%;
    padding: 0.5rem;
    text-align: left;
    position: relative;
}

.page_account_index table td:nth-child(1)::before {
    content: "Channel: ";
    font-weight: 700;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.page_account_index table td:nth-child(2)::before {
    content: "Platform: ";
    font-weight: 700;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.page_account_index table td:nth-child(3)::before {
    content: "Status: ";
    font-weight: 700;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.page_account_index table td:nth-child(4)::before {
    content: "Actions: ";
    font-weight: 700;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.pagination ul {
    list-style: none;
}

.pagination ul a {
    display: block;
    border: 1px solid var(--border);
    width: 2em;
    height: 2em;
    text-align: center;
    line-height: 2em;
}

.pagination ul li {
    display: inline-block;
}

.pagination ul li.active {
    background-color: var(--accent);
}

.pagination ul a:hover {
    border-color: var(--accent);
}

.pagination {
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.page_songs_play .instructions {
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: .5rem;
    margin-bottom: 1rem;
}

.page_songs_play .instructions p {
    margin-bottom: 0;
}

strong.chat_command {
    background-color: var(--border);
    border-radius: var(--border-radius);
    padding: 3px 6px;
    display: inline-block;
}

.card-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

ul.card-list li {
    list-style: none;
}

.card-list li p {
    margin: 0;
}

.card-list li {
    width: calc(25% - .8rem);
    border-radius: var(--border-radius);
    padding: 1em;
    background: var(--bg-header);
    transition: transform 0.2s ease;
    user-select: none;
    border: solid 1px var(--accent);
}

.card-list li:hover {
    transform: scale(1.02);
}

.steps ol.card-list {
    list-style: none;
}

.card-list span.step-number {
    position: absolute;
    background: var(--accent);
    width: 1.3em;
    height: 1.3em;
    text-align: center;
    line-height: 1.3em;
    border-radius: 50%;
    margin-top: -.2em;
    margin-left: -.2em;
    font-size: 2em;
}

.steps ol.card-list h2 {
    margin-left: 1.8em;
    margin-top: 0;
}

.steps .card-list li {
    width: calc(50% - 0.8rem);
}

div.cta {
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    padding: 2rem;
    margin: 2rem;
}

div.cta h2 {
    margin: 0rem 0 1rem 0;
}

.steps ol.cards {
    list-style: decimal;
}

@media (min-width: 981px) {
    .formset-row {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .formset-row label {
        width: 200px;
        flex-shrink: 0;
    }

    .formset-row input[type="text"],
    .formset-row input[type="range"],
    .formset-row textarea,
    .formset-row .checkbox-group {
        flex: 1;
    }
}

@media (max-width: 1030px) {
    ul.card-list li {
        width: calc(33.33% - .8rem);
    }
}

@media (max-width: 980px) {
    .content {
        flex-direction: column;
        gap: 1rem;
    }

    .flex-col {
        flex: 1;
        min-width: 100%;
        text-align: center;
    }

    .mobile-only {
        display: initial;
    }

    .desktop-only {
        display: none !important;
    }

    header {
        padding-left: 8px;
        padding-right: 8px;
    }

    .menu {
        order: 1;
        flex: 1;
    }

    .account {
        flex: 1;
        text-align: right;
    }

    .logo {
        order: 2;
        flex: 0;
    }

    .menu nav {
        flex-direction: column;
        align-items: center;
    }

    .menu ul {
        flex-direction: column;
        gap: 0rem;
        width: 100%;
    }

    .menu li {
        width: 100%;
        text-align: center;
    }

    .menu li a {
        width: 100%;
        padding: 1rem 2.5rem;
        background-color: var(--bg-primary);
        border-radius: var(--border-radius);
        outline: 1px solid var(--border);
        z-index: 999;
        margin-top: 7px;
        box-shadow: 0px 0px 7px 5px rgba(0, 0, 0, 0.3);
        min-width: 170px;
    }

    .menu .mobile-btn {
        display: block;
    }

    .menu nav {
        display: none;
    }

    .menu.active nav {
        display: flex;
        position: absolute;
        top: 59px;
        left: 0px;
        z-index: 999;
    }

    .logo {
        text-align: center;
    }

    .logo svg {
        height: 50px;
        max-width: 160px;
    }

    formset {
        padding: 1rem;
    }

    .formset-row {
        gap: 0.25rem;
    }

    .formset-row input[type="text"],
    .formset-row input[type="range"],
    .formset-row textarea {
        padding: 0.5rem;
    }

    .formset-row.buttons .btn {
        margin-bottom: 1rem;
    }

    .checkbox-group {
        gap: 0.75rem;
    }

    table.song-list thead {
        display: none;
    }

    table.song-list tbody {
        display: block;
    }

    table.song-list tbody img {
        max-width: 100%;
        max-height: 100%;
    }

    table.song-list tbody tr {
        margin-bottom: 1em;
        padding: 1em;
        border-radius: var(--border-radius);
        border: 1px solid var(--border);
        display: inline-block;
        clear: both;
        overflow: hidden;
    }

    table.song-list tbody td {
        width: 50%;
        padding: 0.5em;
        text-align: left;
        display: block;
        float: left;
    }

    table.song-list tbody td:nth-child(2),
    table.song-list tbody td:nth-child(3),
    table.song-list tbody td:nth-child(4),
    table.song-list tbody td:nth-child(5) {
        float: right;
    }

    table.song-list tbody td::before {
        font-weight: 700;
        color: var(--text-secondary);
        display: block;
        margin-bottom: 0;
    }

    table.song-list tbody td:nth-child(3)::before {
        content: "Artist: ";
    }

    table.song-list tbody td:nth-child(4)::before {
        content: "Duration: ";
    }

    .page_songs_list table.song-list tbody td:nth-child(5)::before {
        content: "Channel: ";
    }

    .page_songs_list table.song-list tbody td:nth-child(6)::before {
        content: "Status: ";
    }

    .page_channel_queue table.song-list tbody td:nth-child(5)::before {
        content: "Added By: ";
    }
}

@media (max-width: 850px) {
    ul.card-list li {
        width: calc(50% - .8rem);
    }

    .steps ol.card-list li {
        width: 100%
    }
}

@media (max-width: 607px) {
    ul.channel-list li {
        width: 100%;
        height: 80px;
    }

    ul.card-list li {
        width: 100%;
    }

    div.cta {
        margin: 0;
    }

    .btn-login-oauth {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1em;
        padding: 1em;
    }
}

@media (max-width: 490px) {
    div.cta {
        padding-bottom: 1em;
    }

    .cta .btn {
        margin-bottom: 1em;
    }
}</pre></body></html>