body {
    padding: 25px;
    font-size: 25px;
    background-color: var(--bg-color); color: white;
    color: var(--text-color);
}
a, button, select, option {
    cursor: pointer;
}
button {
    border: none;
    padding: 10px 15px;
    min-width: 174px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    margin-top: 5px;
    transition: background-color 0.3s ease;
    background: #1a73e8;
    color: #ffffff;
}
button:hover { background: #1669c1; }
textarea, input[type="text"] {
    outline: 0px solid transparent;
    background-color: var(--input-bg-color);
    color: #fff;
    border: 2px solid var(--input-bg-color);
}
textarea:focus, .editable:focus, input[type="text"]:focus {
    outline: 0px solid transparent;
    border-bottom: 2px solid var(--focus-color);
}
select {
    border: 2px solid var(--input-bg-color); font-family: Arial;
}
input[type="radio"] {
    margin: 5px;
}
input[type="radio"]:hover, input[type="radio"]:checked {
    transform: scale(1.3); border-color: var(--input-bg-color);
}
code { white-space: pre; font-family: Consolas, monospace;}
code .key {color: var(--json-key-color);}
code .boolean {color: var(--json-boolean-color);}
code .null {color: var(--json-null-color);}
code .number {color: var(--json-number-color);}
code .string {color: var(--json-string-color);}
.highlight-line {color: var(--trace-line-color);}
.highlight-underline {color: var(--trace-underline-color);}
.highlight-line-num {color: var(--trace-line-number-color);}
.tag {color: var(--xml-tag-color);}
.variable {color: var(--xml-key-color);}
.attribute {color: var(--xml-value-color);}
.uuid {min-width: 355px; font-family: Verdana, sans-serif;}
.uuid-wo-size {font-family: Verdana, sans-serif;}
.monospace {font-family: monospace, monospace;}
.block {display: inline-block; margin: 2px; vertical-align: middle; max-width: 95%;}
.top {vertical-align: top;}
.bottom {vertical-align: bottom;}
.title {
    font-size: 28px; font-family: Arial;
    color: var(--titles-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.small-text {
    font-size: 16px; font-family: Arial;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.bg {background-color: var(--bg-color);}
.fs14 {font-size: 14px;}
.fs15 {font-size: 15px;}
.fs16 {font-size: 16px;}
.fs18 {font-size: 18px;}
.fs20 {font-size: 20px;}
.m2 {margin: 2px;}
.colored {color: var(--main-numbers);}
.correct-color {color: green; font-family: Consolas, monospace;}
.incorrect-color {color: red; font-family: Consolas, monospace;}
.correct {color: green; font-family: Consolas, monospace;}
.incorrect {color: red; font-family: Consolas, monospace;}
.correct::before {content: "Correct";}
.incorrect::before {content: "Incorrect";}
.editable {
    font-size: 16px;
    font-family: monospace;
    text-rendering: auto;
    display: inline-block;
    appearance: auto;
    resize: auto;
    cursor: text;
    white-space-collapse: preserve;
    text-wrap: wrap;
    overflow-wrap: break-word;
    background-color: var(--input-bg-color);
    padding: 2px;
    min-width: 351px;
    min-height: 96px;
    border: 2px solid var(--input-bg-color);
}
.round-button {
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.25s ease;
}
@media (hover: hover) {
    .round-button:hover {background-color: var(--input-bg-color);}
}
@media (hover: none) {
    .round-button:active {background-color: var(--input-bg-color);}
}
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.hidden {display: none;}
.compare-highlight-line {background-color: #ff6600;}
.compare-highlight-char {background-color: #ab1a1a; text-decoration: line-through;}
.compare-highlight-add {background-color: #218500;}
.compare-highlight-edit {background-color: #ff6600;}
.compare-results-container {display: flex; gap: 20px;}
.compare-result {
    display: inline-block;
    word-break: break-word;
    max-inline-size: 50%;
    background-color: #333;
    font-size: 15px;
    font-family: Consolas, monospace;
}
.compare-pre {white-space: pre-wrap; word-wrap: break-word;}
.converter-result {
    display: inline-block;
    word-break: break-word;
    max-inline-size: 50%;
    background-color: var(--input-bg-color);
    font-size: 14px;
    font-family: Consolas, monospace;
}
.horizontal-scrollable {overflow-x: auto; max-width: 90%;}
.comment {color: green;}
.corner-button {position: fixed; top: 15; right: 15; z-index: 9999;}
dialog::backdrop { background: rgba(0, 0, 0, 0.32); backdrop-filter: blur(2px); }
dialog {
    position: relative;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 600px;
    max-width: 80%;
    font-family: 'Roboto', sans-serif;
    padding: 0;
}
.close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.close-button:hover { background-color: rgba(60, 64, 67, 0.1); }
.dialog-header { padding: 24px 48px 0 24px; }
.dialog-content { padding: 20px 24px; font-size: 16px; color: #bdc5cf; }
.dialog-actions { display: flex; justify-content: flex-end; padding: 24px; }
button.action-btn {
    padding: 8px 16px;
    margin-left: 8px;
}
button.confirm { background: #1a73e8; }
button.confirm:hover { background: #1669c1; }
button.cancel { background: #d32f2f; }
button.cancel:hover { background: #9d2323; }
.details-item {padding-left: 20px;}
input[type="color"] {margin-top: 2px; background: none; border: 0; cursor: pointer; width: 15em;}
.wrapper {display: grid; grid-gap: 10px; grid-template-columns: repeat(auto-fill, 1200px);}
.notification {
    position: fixed;
    font-size: 15px;
    top: 10;
    left: 50%;
    transform: translateX(-50%);
    background-color: #008000;
    color: white;
    padding: 15px 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    font-family: Verdana, sans-serif;
    font-weight: bold;
    overflow: hidden;
    border-radius: 50px;
}
.progress-bar {
    height: 5px;
    background-color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 2s linear;
}
.table-container {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    column-gap: 5px;
    align-items: start;
}
.table-row {display: contents;}
.table-element {white-space: nowrap;}
.table-element-center {padding-top: 10px;}
.small-button {height: 20px; width: 20px; padding: 0px; min-width: 0px;}
.negative {background-color: var(--negative-color);}
.positive {background-color: var(--positive-color);}
#file-for-base64 { display: none; }
#file-name { display: block; margin-top: 12px; font-size: 14px; word-break: break-word; }
.file-upload-container { font-family: 'Roboto', sans-serif; max-width: 300px; }
.drop-zone {
    border: 2px dashed #1a73e8;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    color: #1a73e8;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(26, 115, 232, 0.4);
}
.drop-zone.dragover { background-color: #25446d; }
label[for="file-for-base64"] {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: #1a73e8;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(26, 115, 232, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
label[for="file-for-base64"]:hover { background-color: #f1f8ff; }
label[for="file-for-base64"]:active { background-color: #e0e9ff; }
footer {
    text-align: center;
    padding: 5px 0;
    position: fixed;
    bottom: 0;
    right: 0;
    min-width: 100%;
    font-size: 14px;
    background-color: #4a1c1c;
    z-index: 100000;
    background-image:
    /* Dark red */
    linear-gradient(30deg, #3b0f0f 13.5%, transparent 13.5%, transparent 86.5%, #3b0f0f 86.5%),
    linear-gradient(-30deg, #3b0f0f 13.5%, transparent 13.5%, transparent 86.5%, #3b0f0f 86.5%),
    /* Dark grey */
    linear-gradient(30deg, var(--bg-color) 13.5%, transparent 13.5%, transparent 86.5%, var(--bg-color) 86.5%),
    linear-gradient(-30deg, var(--bg-color) 13.5%, transparent 13.5%, transparent 86.5%, var(--bg-color) 86.5%),
    /* Dark red */
    linear-gradient(30deg, #3b0f0f 13.5%, transparent 13.5%, transparent 86.5%, #3b0f0f 86.5%),
    linear-gradient(-30deg, #3b0f0f 13.5%, transparent 13.5%, transparent 86.5%, #3b0f0f 86.5%),
    /* Dark grey */
    linear-gradient(30deg, var(--bg-color) 13.5%, transparent 13.5%, transparent 86.5%, var(--bg-color) 86.5%),
    linear-gradient(-30deg, var(--bg-color) 13.5%, transparent 13.5%, transparent 86.5%, var(--bg-color) 86.5%),
    /* Very dark grey */
    linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%),
    linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%);
    background-position: 0 2em, 0 2em, 2em 4em, 2em 4em, 4em 2em, 4em 2em, 6em 4em, 6em 4em, 0 0, 2em 2em;
    background-size: 8em 4em, 8em 4em, 8em 4em, 8em 4em, 8em 4em, 8em 4em, 8em 4em, 8em 4em, 4em 4em, 4em 4em;
}
.cookie-notification {
    position: fixed;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 100001;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--input-bg-color);
    color: white;
    padding: 15px;
    text-align: center;
    display: none;
}
.cookie-notification button {
    background-color: #f39c12;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    margin-left: 10px;
}
.formatted-output {max-width: 95%; overflow-wrap: break-word; white-space: normal;}
.sized-output {max-width: 95%; overflow-wrap: break-word; white-space: break-spaces;}
.player {
    height: 95vh;
    display: flex;
    max-width: 700px;
    max-height: 700px;
    align-items: center;
    flex-direction: column;
    /* justify-content: center; */
}
.player-details {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 25px;
}
.track-art {
    margin: 25px;
    height: 250px;
    width: 250px;
    background-image: url("../images/music-solid.svg");
    background-size: cover;
    border-radius: 15%;
}
.now-playing {
    font-size: 1rem;
}
.track-name {
    font-size: 3rem;
    text-align: center;
}
.track-artist {
    font-size: 1.5rem;
}
.player-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.playpause-track, .prev-track, .next-track {
    padding: 25px;
    opacity: 0.8;
    /* Smoothly transition the opacity */
    transition: opacity .2s;
}
.playpause-track:hover, .prev-track:hover, .next-track:hover {
    opacity: 1.0;
}
.slider-container {
    width: 75%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.seek-slider, .volume-slider {
    height: 5px;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.seek-slider::-webkit-slider-thumb, .volume-slider::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 18px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-color);
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--player-info-color);
    border-radius: 50%;
    height: 18px;
    width: 18px;
    margin-top: -7px;
    box-shadow: calc(-100vmax - 18px) 0 0 100vmax var(--player-info-color);
    clip-path: polygon(
        100% 0,
        2px 0,
        0 7px,
        -100vmax 7px,
        -100vmax 11px,
        0 11px,
        2px 100%,
        100% 100%
    );
}
.slider::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    background-color: var(--player-info-color);
    border-radius: 50%;
    height: 18px;
    width: 18px;
    margin-top: -7px;
}
.slider::-webkit-slider-runnable-track {
    height: 4px;
    background: #6e6e6e;
}
.slider:hover:hover {
    opacity: 1.0;
}
.seek-slider {
    width: 60%;
}
.volume-slider {
    width: 30%;
}
.current-time, .total-duration {
    padding: 10px;
}
i.fa-volume-down, i.fa-volume-up {
    padding: 10px;
}
i.fa-play-circle, i.fa-pause-circle, i.fa-step-forward, i.fa-step-backward {
    cursor: pointer;
}
.player-info {
    color: var(--player-info-color);
    accent-color: var(--player-info-color);
}
.player-highlight-color {
    color: var(--player-interactables-color);
}
.draggable-list {
    list-style-type: none;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    max-height: 700px;
    overflow-y: auto;
}
.draggable-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    background-color: #3a3a3a;
    /* border: 1px solid var(--main-numbers);*/
    cursor: pointer;
}
.draggable-img {
    margin: 0px;
    margin-right: 10px;
    height: 50px;
    width: 50px;
    background-image: url("../images/music-solid.svg");
    background-size: cover;
    border-radius: 15%;
    cursor: pointer;
}
.text-container {
    display: flex;
    flex-direction: column;
}
.draggable-item:hover {
    background-color: #545454;
}
.move-burger {
    cursor: move;
    margin-left: auto;
}
.gradient-border {
    --borderWidth: 3px;
    position: relative;
    border-radius: var(--borderWidth);
}
.gradient-border:after {
    content: '';
    position: absolute;
    top: calc(-1 * var(--borderWidth));
    left: calc(-1 * var(--borderWidth));
    height: calc(100% + var(--borderWidth) * 2);
    width: calc(100% + var(--borderWidth) * 2);
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    border-radius: calc(2 * var(--borderWidth));
    z-index: -1;
    animation: animatedgradient 6s ease alternate infinite;
    background-size: 300% 300%;
}
@keyframes animatedgradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.badge {
    position: relative;
    background-color: #007bff;
    color: #fff;
    padding: 2px;
    font-size: 0.75rem;
    border-radius: 50%;
    vertical-align: middle;
    z-index: 1000;
    display: inline-block;
    width: 14px;
    height: 14px;
    text-align: center;
    line-height: normal;
    margin-left: 4px;
}
.badge .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}
.badge:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.empty:empty {
    display: none;
}
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    font-family: Verdana, sans-serif;
    max-width: 100%;
    white-space: nowrap;
    color: var(--text-color);
}
th {
    padding: 0px 15px;
    background-color: var(--table-header);
}
td {
    padding: 5px;
}
.table {
	border: none;
	margin-bottom: 20px;
	border-collapse: separate;
}
.table thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background: var(--table-header);
	font-size: 16px;
}
.table tr th:first-child, .table tr td:first-child {
	border-left: 1px solid var(--table-header);
}
.table tr th:last-child, .table tr td:last-child {
	border-right: 1px solid var(--table-header);
}
.table thead tr th:first-child {
	border-radius: 10px 0 0 0;
}
.table thead tr th:last-child {
	border-radius: 0 10px 0 0;
}
.table tbody td {
	text-align: left;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}
.table tbody tr:nth-child(even) {
	background: var(--table-even-row);
}
.table tbody tr:last-child td{
	border-bottom: 1px solid var(--table-header);
}
.table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 10px;
}
.table tbody tr:last-child td:last-child {
	border-radius: 0 0 10px 0;
}
.headerSortDown:before, .headerSortUp:before {
    content: " ";
    position: relative;
    right: 2px;
    border: 8px solid transparent;
}
.headerSortDown:before {
    top: 10px;
    border-top-color: var(--text-color);
}
.headerSortUp:before {
    bottom: 15px;
    border-bottom-color: var(--text-color);
}
.selected {
    background-color: var(--selected);
}
