@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');



/* Standard style */
html{
  margin: 0px!important;
}
*, *::before, *::after {
  padding: 0px; 
  margin: 0px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{background:#8d8d8d;}
::-webkit-scrollbar-thumb{background:#5f5f5f;}::-webkit-scrollbar-thumb:hover{background:#494949;}


body {
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  padding: 10px;
  background-color: #1a1a1a;
}

:root {
  --knaptekst: #FFFFFF;
  --sand: #ebebe6fa;
  --knap: #022346;
  --knaphover: #0168FA;
  --overskrift: #022346;
  --inputtekst: #022346;
  --inputhover: #032f5e;
}
.container {  
  display: grid;
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: 0.2fr 2.6fr 0.2fr;
  gap: 10px 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "menubar"
    "content"
    "footer";
}

.menubar {
  grid-area: menubar; 
  display: flex;
  height: 100px;
  width: 100%;
  background-color: #262625;
  justify-content: space-evenly;
  align-items: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.logo { 
  justify-self: start;
  align-self: center;
  padding: 10px 20px 10px 20px;
  min-width: 250px;
}
.navbar {
  display: flex;
}
.navbar h1 {
  padding: 0 0 0 25px;
  align-content: center;
  color: white;
  margin: 0;
}
.navbar h2 {
  padding: 0 10px 0 5px;
  align-content: center;
  color: white;
  margin: 0 0 0 5px;
  font-size: 15px;
}
.clock{
  color: white;
  display: block;
  font-size: 3rem;
  min-width: 250px;
}



.content {
  grid-area: content;
  height: 100%; 
}
.stats {
  grid-area: 2 / 1 / 3 / 4;
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 10px 20px 10px 20px;
  background-color: #262625;
  color: white;
}
.stats table, th, td{
  border: none;
  padding: 5px 10px 5px 10px;
}
.stats table{
  text-align: center;
}

.dagsordenTable {
  display: flex;
  width: 100%;
  padding: 5px;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  margin-bottom: 10px;
}
.header {
  margin-top: 50px;
  margin-bottom: 100px;
}


.footer {
  grid-area: footer;
  grid-area: 4 / 1 / 5 / 4;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 5px 10px 5px 10px;
  background-color: #262625;
  color: rgba(255, 255, 255, 0.25);
  align-items: center;
  justify-content: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

