﻿body, html {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    color: white;
    font-family: "Segoe UI","SegoeUI","Helvetica Neue","Helvetica","Arial",sans-serif;
}

a {
    color: white;
    font-family: "Segoe UI","SegoeUI","Helvetica Neue","Helvetica","Arial",sans-serif;
    text-decoration: none;
    font-size: 1.2em;
}

input:not([type=checkbox]) {
    all: unset;
}

input[type=checkbox] {
    position: relative;
    top: 2px;
    accent-color: #444444;
}

iframe {
    border: none;
}

#not-live, #live, #passcode-wrapper, #passcode-nope {
    display: none;
}

#content, .content {
    height: calc(100% - 50px);
    max-height: calc(100vh - 50px);
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#content > span, .content > span {
    display: block;
    font-size: 24px;
    padding-bottom: 10px;
}

#cat-gif {
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 100vw;
}

#cat-gif > img {
    max-width: 100%;
}

#not-live.visible, #live.visible, #passcode-wrapper.visible, #passcode-nope.visible {
    display: block;
}

#live, #not-live, #player, #stream-player {
    width: 100%;
    height: 100%;
}

#live, #not-live {
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#live::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#dvr-link, .stream-mode, #viewer-count {
    text-align: center;
    padding: 15px 0;
    position: relative;
}

#viewer-count {
    height: 22px;
    line-height: 22px;
}

.input-wrapper {
    display: inline-block;
    border: 1px solid white;
    background-color: #444444;
    height: 30px;
    width: 400px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.input-wrapper > input {
    border: none;
    background-color: transparent;
    color: white;
    height: 100%;
    width: 100%;
}

.input-wrapper > input:focus-visible {
    border: none;
}

.stream-mode > select {
    border-radius: 10px;
    background-color: #444444;
    color: white;
    padding: 0 10px;
    border: 1px solid white;
}

.stream-mode > label {
    padding-left: 20px;
    margin-right: 5px;
}

.clickable {
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

#music-player {
    visibility: hidden;
    width: 0;
    height: 0;
}

#music-control {
    display: block;
    position: relative;
    top: -150px;
    left: -50px;
    opacity: 0; 
    transition: opacity 0.2s ease-in-out, left 0.2s ease-in-out; 
}

#music-control.show {
    left: 50px; 
    opacity: 0.6; 
}

.music-control-button-wrapper {
    background-color: #1c1c1c;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.music-control-button-text {
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.music-control-button-icon {
    height: 40px !important;
}

#music-control, #music-playing-button-wrapper, #gib-music-button-wrapper, #stahp-button-wrapper {
    display: none;
}