:root {
  color-scheme: dark;
}

.container {
    display: grid;
    width: 95vw;
    height: 95vh;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 5% 1fr 1fr 1fr 8%;
    grid-gap: 0.4rem;
    margin: 0px;
  
  }
  
  
  
  .header {
    grid-row: 1 / 2;
    grid-column: 1 / 1;
  }
  
  .sidebar {
    grid-row: 2 / 5;
    grid-column: 1 / 2;
  }
  
  .content-1 {
    grid-row: 1 / 5;
    grid-column: 2 / 6;
  }
  

  
  .footer {
    grid-row: 5 / 6;
    grid-column: 1 / 6;
  }
  
  .video-container {
    height: 100%;
    width: 100%;
    overflow-y: hidden;
    background-color: #454a58;
    background-image: linear-gradient(190deg, #131418 100%, #0a0c1190 127%);
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: 20% 76% 1% ;
    grid-gap: 5px;
    justify-content: center;
    align-items: start;
  }

  .local-video {
    background-color: #454a58;
    background-image: linear-gradient(190deg, #131418 100%, #0a0c1190 127%);
    position: relative;
    grid-row: 1;
    grid-column: 1;
    padding-top: 5px;
    padding-bottom: 5px;
  }


  #remote-playerlist{
    color: #ffffff;
    height:500px;
    max-height: 100%;
    background-color: #454a58;
    background-image: linear-gradient(190deg, #131418 50%, #0a0c1190 127%);
    justify-content: start;
    align-items: center;
    overflow-y:auto;
 

    grid-row: 2/3;
    grid-column: 1;
    flex:none;
    font-size: 16px;
    font-weight: bold;
    padding: 1px;
    scrollbar-color: rgb(107, 2, 2) #3e4250;

  }
  
  .video-footer{
    grid-row: 3;
    grid-column: 1;
    font-size: 5px;
  }
  /* OTHER STYLES */
  
  body {
  
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0px;
    margin: none;
    background-color: #3b404e;
    display: flex;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
  
  .item {
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    padding: 1px;
  }

  .header, .sidebar, .footer{
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    border-radius: 4px;
    border: 6px solid #171717;
  }
  
  .header {
    background-color: #0a0a0a;
   

  }
  
  .sidebar {
    background-image: linear-gradient(203deg, #0b1616 0%, #011b1a 90%)

  }
  

  
  .footer {
    background-color: #000000;
    background-image: linear-gradient(120deg, #030203 30%, #000000 77%);
  }