html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #000000;
}

canvas {
    display: block;
}

ul li {
    display: inline;
    margin: 11px;
}

p {
    font-family: monospace;
    font-size: 17px;
    color: #000000;
}

a  {
    text-decoration: none;
    color: #777777;
}

a:hover {
    text-decoration: none;
    color: #000000;
}

#captureProgress {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 420px;
    margin: 0 auto;
    background: rgba(9, 9, 10, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 10px 12px;
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 1000;
}

#captureProgress.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.captureProgressText {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.captureProgressLabel {
    color: #ffffff;
    font-family: monospace;
    font-size: 13px;
}

.captureProgressStatus {
    color: #c9d0da;
    font-family: monospace;
    font-size: 12px;
}

.captureProgressTrack {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.captureProgressFill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #6ec6ff, #8ce99a);
    border-radius: 999px;
    transition: width 100ms linear;
}
