* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
}

html {
    font-size: 32px;
    background-color: rgb(54, 54, 54);
    color: white;
}

body {
    display: flex;
    overflow: hidden;
    flex-direction: column;
  
    gap: 2rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

button{
    padding: 1rem;
    border-radius: 0.25rem;
    transition: 0.5s ease;
    font-size: large;
    cursor: pointer;
}

#content-wrap{
 
    margin-top: 200px;
    margin-bottom: auto;
    justify-content: center;
    align-items: center;
    
}

button:hover{
    transform: scale(1.1);
    filter: brightness(110%);
}

#Gen{
    background-color: red;
    color: white;
}

#Ellen{
    background-color: green;
    color: white;
}

#gombok{
    position: absolute;
    bottom: 10vh;
    left: 42%;
    display: block;
    align-items: center;
    margin-left: auto;


}


#page-container {
    position: relative;
    min-height: 95vh;

}

#content-wrap {
    padding-bottom: 2.5rem;


}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 0.5rem;
    text-align: center;
}





table {
    border-collapse: separate;
    border-spacing: 20px;
    margin: 50px auto;
  }

#checkek{
    position: absolute;
    left: 12px;
    justify-content: start;
    align-items: center;
    margin-top: 15%;
    
}

  td {


    min-width: 150px;
    width: max-content;
    max-height: 100px;
    background-color: white;
    color: black;
    padding: 5vh;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    vertical-align: middle;
    font-size: 18pt;
    font-weight: bold;
  }

#login-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: white;
}
#login-form {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 5px;
    color: black;
    width: max-content;
}
#page-container {
    display: none;
}


.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

.container:first-child{
    border-bottom: 3px solid black;
}
  
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 10%;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 40px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
