body { 
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
    color: rgb(222, 221, 221);
}

h1 {
    font-size: 25px
}

h2 {
    font-size: 20px
}

.p1 {
    font-size: 12px;
}

p {
    font-size: 18px;
}
   
button {
    background-color: #ba0e81; /* Green */
    border: none;
    color: white;
    padding: 5px 20px;
    font-size: 16px;
}

input {
    width: 175px;
    height: 20px;
    font-size: 16px;
}

table {
    position: fixed;
    top: 5;
    right: 0;
    font-size: 11px;
    border: 0.1px solid white;
}

button.right {
    position:absolute; top: 0; right: 0;
}

table.left {
    position: absolute;
    top: 0;
    left: 0;
}

table.right {
    position: absolute;
    top: 0;
    right: 0;
}


.light-mode {
    background-color: white;
    color: black;
}

.dark-mode {
    background-color: black;
    color: white;
}

/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 10px;
  margin-bottom: 9px;
  cursor: pointer;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 50px; /* Add rounded corners */
  padding: 0.5px; /* Increase padding for better spacing */
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 283px;
  height: 25px;
  width: 25px;
  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: 7px; /* Adjust position for the round checkbox */
  top: 4px; /* Adjust position for the round checkbox */
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
