div#overlay {
  align-items: center;
  background-color: rgba(0, 0, 0, .7);
  bottom: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 6666;
}

form#init {
  background: white;
  border-radius: 4px;
  max-width: 90%;
  padding: 1em;
  width: 300px;
}

main.content.config .content-config {
  display: block;
}

main.content.config .content-index {
  display: none;
}

#lang-dropdown {
  width: 90px;
  padding: 5px;
  border: 3px solid #000000;
  border-radius: 10px;
  background-color: #fff;
  color: #000000;
  font-size: 16px;
  cursor: pointer;
}

#lang-dropdown:hover {
  font-weight: bold;
}


.flex-container {
  display: flex;
  flex-wrap: nowrap; 
}


.flex-item-graph {
  flex-grow: 1;
  flex-shrink: 1; 
  flex-basis: auto; 
}

.flex-item-table {
  flex-grow: 0;
  flex-shrink: 0; 
  flex-basis: auto; 
}

.actuall-hour {
  background-color: #FFD700;
}


.container{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
}


.schedule__container{
  background: linear-gradient(#ebf4f5, #b5c6e0);
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.days__container{
  display: flex;
}

.corner{
  width: 60px;
  height: 70px;
  margin: 2px;
}

.day{
  width: 100px;
  border: solid 2px white;
  color: #0c3ea8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2px;
}

.part__day{
  display: flex;
}

.time{
  width: 60px;
  height: 50px;
  color: white;
  background-color: #4974c9;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2px;
}

.task{
  background-color: white;
  height: 50px;
  width: 100px;
  margin: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}


.overlay {
  display: none; 
  position: absolute;
  align-items: center;
  z-index: 6665; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 200%;
  overflow:auto; 
  background-color: rgba(0, 0, 0, 0.5); 
}

button#closeOverlay{

  height: 40px;
  width: 100px;
  align-self: center;
  margin-top: 10px;
  border-radius: 8px;
  background-color: #cecece;
  
}

