@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');


* {
  font-family: 'Poppins', sans-serif;
}

body{
  background-color: #1a1a1a;
  margin-bottom: -10px;
}

::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{background:#8d8d8d;}
::-webkit-scrollbar-thumb{background:#5f5f5f;}::-webkit-scrollbar-thumb:hover{background:#494949;}

.container {  
  color: white;
  display: grid;
  height: 100vh;
  grid-template-columns: 0.2fr 1fr;
  grid-template-rows: 0.2fr 2.2fr 0.6fr;
  gap: 10px 10px;
  grid-auto-flow: row;
  grid-template-areas:
  "header header"
  "sidebar videoplayer"
  "sidebar footer";
}
  
.header {  
  background-color: #262625;
  display: grid;
  grid-template-columns: 0.2fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "logo logo_tekst";
  grid-area: header;
}
  
.logo {
  justify-self: center;
  align-self: center;
  grid-area: logo;
  margin-top: 5px;
}
  
.logo_tekst {
  justify-self: start;
  align-self: center;
  grid-area: logo_tekst;

}
.logo_tekst span{
  color: white;
  font-size: 2rem;
}

.videoplayer {  
  background-color: #262625;
  overflow-x: hidden;
  padding: 10px;
  height: 73vh;
  display: grid;
  grid-template-columns: 50%;
  grid-template-rows: 0.3fr 3.1fr 0.3fr;
  gap: 10px 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "videoplayer_session_info videoplayer_session_info_sessionid"
    "videoplayer_remote videoplayer_moderator"
    "videoplayer_remote_info_navn videoplayer_remote_info_right";
  justify-self: stretch;
  align-self: stretch;
  grid-area: videoplayer;
}

.videoplayer_session_info {  
  display: flex;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "videoplayer_session_info_appid";
  grid-area: videoplayer_session_info;
}

.videoplayer_session_info_appid { 
  grid-area: videoplayer_session_info_appid;
}

.videoplayer_remote_info_navn { 
  grid-template-areas: 
    "videoplayer_remote_info_fornavn videoplayer_remote_info_efternavn"; 
  grid-area: videoplayer_remote_info_navn; 
  display: flex;
  gap: 10px;
}

.videoplayer_remote_info_fornavn { 
  grid-area: videoplayer_remote_info_fornavn; 
}
.videoplayer_remote_info_efternavn { 
  grid-area: videoplayer_remote_info_efternavn; 
}

.videoplayer_remote { 
  grid-area: videoplayer_remote; 
  justify-self: center;
  align-self: center;
}

.videoplayer_moderator { 
  grid-area: videoplayer_moderator; 
  justify-self: center;
  align-self: center;
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
  -ms-filter: fliph;
  filter: fliph;
}

.videoplayer_session_info_sessionid { 
  grid-area: videoplayer_session_info_sessionid; 
  
}

.videoplayer_remote_info_right { 
  grid-area: videoplayer_remote_info_right; 
  z-index: -10;
}

.sidebar {  
  background-color: #262625;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.1fr 1.9fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "sidebar_header"
    "sidebar_content";
  grid-area: sidebar;
}
.sidebar_header {
  justify-self: center;
  align-self: center;
  text-align: center;
  grid-area: sidebar_header;
  background-color: #323143;
  width: 100%;
  height: 100%;
}
.sidebar_header span{
  color: white;
  font-size: 35px;
}
.sidebar_content { 
grid-area: sidebar_content;
overflow-y: scroll; 
}

.footer {  
  padding: 10px;
  background-color: #262625;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas:
    ".";
  grid-area: footer;
  align-items: center;
}

.footer-btn {
  display: flex;
  gap: 10px;
}


#remote_AppID, #remote_SessionID, #remote_fornavn, #remote_efternavn, #remote_firma, #remote_euronextID {
  width: 255px;
  height: 20px;
  padding: 10px;
  color: #ffffff;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgb(var(--bs-white-rgb));
  border-radius: 5px;
  
}
#remote_dagsorden {
  min-width: 120px;
  width: auto;
  height: 40px;
  padding: 10px;
  padding-left: 15px;
  color: #ffffff;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgb(var(--bs-white-rgb));
  border-radius: 5px;
  
}



#remote_AppID::placeholder, #remote_SessionID::placeholder, #remote_euronextID::placeholder {
  color:#ffffff;
}

.player {
  background-color: rgba(58, 58, 58, 0.5);
  height: 20vw;
  aspect-ratio: 16 / 9;
}

.player-name {
  margin: 8px 0;
}

.remote {
  background-color: rgba(58, 58, 58, 0.5);
  height: 20vw;
  aspect-ratio: 16 / 9;
}
#remote-besked {
  background-color: rgba(58, 58, 58, 0.5);
  color: white;
  height: 20vw;
  aspect-ratio: 16 / 9;
  font-size: 20px;
}

.btn {
  color: #ffffff;
  min-width: 200px;
  border-radius: 5px;
  padding: 5px 10px 5px 10px;
  font-size: 1rem;
  display: flex;
  justify-self: center;
  justify-content: center;
}

.btn:hover {
  opacity: 1;
  color: #ffffff;
}

.accept {
  padding: 12px 20px;
  border: none;
  background-color: #8ebf42;
  cursor: pointer;
  opacity: 0.8;
}

.cancel {
  padding: 12px 20px;
  border: none;
  background-color: #cc0000;
  cursor: pointer;
  opacity: 0.8;
}

.ready {
  margin-left: 50px;
  padding: 12px 20px;
  border: none;
  background-color: #ccaf08;
  cursor: pointer;
  opacity: 0.8;
}
.notReady {
  padding: 12px 20px;
  border: none;
  background-color: #cc6008;
  cursor: pointer;
  opacity: 0.8;
}

.update {
  margin-left: 50px;
  padding: 12px 20px;
  border: none;
  background-color: #0a3bdb;
  cursor: pointer;
  opacity: 0.8;
}

.card {
  position: relative;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 75px;
  min-width: 350px;
  margin-top: 5px;
  word-wrap: break-word;
  color: black;
  background-color: white;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .25rem
}

.deltager-element {
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}
