html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}


body {
    /*font-family: 'Roboto', sans-serif;*/
    /*font-family: system-ui, sans-serif;*/
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 60px;
}


*:focus {
    box-shadow: none !important;
}

 #statusText.online {
    color: green;
}

#statusText.offline {
    color: red;
}



.maincontainer {
    margin-right: auto;
    margin-left: auto;
}





.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
    vertical-align: middle;
}


.video-player .shaka-bottom-controls {
    padding-bottom: 1.5%;
}

span.material-icons.videolist-icon {
    font-size: 2.2rem;
    /*font-weight: 300;*/
    color: #666666;
}


.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' 0, 'opsz' 24
}

.hover-hint::after {
    content: 'Click to view video list';
    position: absolute;
    bottom: -30px; /* Adjust based on actual size */
    left: 50%;
    transform: translateX(-50%);
    background-color: #00000070;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    white-space: normal; /* Allow text wrapping */
    text-align: center;
    width: 150px; /* Set specific width for the hint */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.hover-hint {
    cursor: pointer;
}

.hover-hint:hover::after {
    visibility: visible;
    opacity: 1;
    
}

.form-select:focus {
    border-color: #939393;
}

#langselect {
    padding: 0.075rem 2.25rem 0.075rem 0.75rem;
}