html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Ensures the body fills the entire page height */
    overflow: hidden;
    /* Hides scrollbars on the main page */
    font-family: "Arial", Helvetica, sans-serif
}

/*
/* Media Query for Mobile View 
@media screen and (max-width: 760px) {
  .desktop-content {
    display: none; /* Hide desktop content when screen width is 768px or less 
  }
  .mobile-content {
    display: block;  Show mobile content when screen width is 768px or less 
  }
}*/

#fullScreenIframe {
    position: absolute;
    /* or fixed */
    top: 0;
    left: 0;
    width: 100dvw;
    /* 100% of the viewport width */
    height: 100dvh;
    /* 100% of the viewport height */
    border: none;
    /* Removes default iframe border */
    background: #ffffff;
    /* Optional: Sets a background color while loading */
}

html,
body {
    display: flex;
    justify-content: center;
    /* Centers content horizontally */
    align-items: center;
    /* Centers content vertically */
    min-height: 100vh;
    /* Ensures body takes up the full viewport height */
    margin: 0;
    /* Remove default body margin */
}

.parent-container {
    display: flex;
    flex-direction: column;
    /* Stack children vertically */
    height: 100vh;
    /* Make the container take the full height of the viewport */
    background-color: #262626;
    width: 100vw;
}

.panel-container {
    display: flex;
    flex-direction: column;
    /* Stack panels vertically */
    justify-content: flex-start;
    padding-left: 0px;
}

.panel {
    /*transition: transform 0.2s;*/
    height: 60px;
    background-color: #262626;
    color: white;
}
/*
.panel:hover {
    transform: translateY(-5px);
}*/

.bottom-band-panel {
    display: flex;
    background-color: black;
    height: 80px;
    justify-content: center;
    position: fixed;
    bottom: 0;
}

.player-panel-inner {
    display: flex;
    justify-content: center;
    background-color: black;
    height: 50px;
    width: 100vw;
    padding-top: 10px;
    padding-left: 10px;
}

.play-pause-button {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid black;
    /* Creates the triangle shape */
    cursor: pointer
}

.myInvisibleButton {
    background-color: transparent;
    color: white;
}