html, body {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

svg {
    width: 100%;
    height: 100%;
}


.circle {
    fill: green;
    cursor: pointer;
}

.rSlider {
}

.optionsContainer {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
  }

  #nextButton,#prevButton {

    color: rgb(255, 255, 255);
    border-radius: 3px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    left: 0;
    background-color: #f2385a;
}

#prevButton:hover {
  background-color: #b62943;
}

#nextButton:hover {
  background-color: #b62943;
}

#timeCategory,#wasteCategory {
    padding: 5px;
    border: 1px solid rgb(209, 209, 209);
    border-radius: 10px;
    margin-right: 15px;
    height: 34px;
    align-self: center;
    max-width: 100px;
    text-overflow: ellipsis;


}

#wasteCategory:hover {
  background-color: rgb(209, 209, 209);
}
#timeCategory:hover {
  background-color: rgb(209, 209, 209);
}

/* The switch - the box around the slider */
.switch {
    margin-right: 15px;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-top: 8px;
    align-self: center;
    
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f2385a;
    border: 1px solid rgb(209, 209, 209);
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:hover {

    
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px solid rgb(209, 209, 209);
  }

  
  input:checked + .slider {
    background-color: rgb(243, 243, 243);
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px rgb(243, 243, 243);

  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;

  }
  
  .slider.round:before {
    border-radius: 50%;

  }

  svg{
    background-color: rgba(247, 239, 255, 0);
  }

  #canvas {
    width: 100%;
    height: 100%;
  }

  .bezirk:hover {
    fill: #D3D3D3;
  }

  .tooltip {
    position: absolute;
    pointer-events: none;
    background-color: #F8F8F8;
    color: #333;
    border: 1px solid #CCC;
    border-radius: 4px;
    padding: 6px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }


  .container {
    position: fixed;
    display: flex;
    flex-direction: column;
    height: 100vh; /* 100% viewport height */
    width: 100%; /* 100% viewport width */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px;
  }

  html {
    overflow: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

.grid {
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}

.grid-item {
  padding: 10px;
  text-align: center;
}

#canvasWrapper {
  flex-grow: 1;
}

.optionsContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  /* Additional styling as needed */
}

.trashEmoji {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-container div {
  display: flex;
  align-items: center;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 8px;
}