body {
  margin: 0;
  padding: 0;
}



.highlighted {
  background-color: yellow; /* You can customize the background color */
  /* Add any other styling you want for highlighted cells */
}
header {
  background-color: #1A106A;
  color: #fff;
  padding: 10px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.subhead {
  top: 11%; 
  height: 100px; 
  width: 600px; 
  
  color: black; }
h5{
  color: #000000;
}
a.one:link {color:#190d4c;}
a.one:any-link {color:#190d4c;}

a.one:hover {color:#00d9ff;}

/* Spilt the page for two */

.split {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 17%;
    overflow-x: hidden;
    padding-top: 20px;
  }
  
  .left {
    left: 0;
    background-color: #ffffff;
  }
  
  .right {
    right: 0;
    background-color: #ffffff;
  }
  
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);*/
    border-radius: 8px;
  }
  label {
    font-weight: bold;
  }
  textarea {
    width: 300px;
    height: 50px;
    margin: 10px 0;
    padding: 5px;
    resize: none;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  button {
    padding: 8px 20px;
    margin: 10px;
    cursor: pointer;
    color: #000000;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .icon {
    padding: 4px 10px;
    margin: 5px;
    cursor: pointer;
    color: #000000;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  button:hover {
    background-color: #231a6f;
    color: #fff;
  }
  table {
    border-collapse: collapse;
    margin: 20px auto;
  }
  th, td {
    border: 1px solid #fbf8f8;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    background-color: #f9f9f9;
  }

  .wrapper {
    width: 50vw;
    /* unfortunately width has to be set to some hard value */
    display: flex;
}

.slide {
    width: 0;
}

.content {
    width: 50vw;
    height: 100%;
    /* this is optional if you want every slide to have same height as the highest one */
}

  /* Slider section */
  .wrapper {
    width: 50vw;
    /* unfortunately width has to be set to some hard value */
    display: flex;
}

.slide {
    width: 0;
}

.content {
    width: 50vw;
    height: 100%;
    /* this is optional if you want every slide to have same height as the highest one */
}

/* Additional styling */



.wrapper {
    margin: 0 auto;
    background-color: white;
}



.content {
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s;
    max-height: 90vh;
    overflow-y: auto;
}


/*.content5,
.content6 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E0E0E0;
}*/


#i_1:checked~.wrapper .content1,
#i_2:checked~.wrapper .content2,
#i_3:checked~.wrapper .content3,
#i_4:checked~.wrapper .content4 {
    opacity: 1;
    pointer-events: auto;
}

label {
    color: #000000;
    transition-duration: .6s;
    cursor: pointer;
}

#i_1:checked~.controls label[for="i_1"],
#i_2:checked~.controls label[for="i_2"],
#i_3:checked~.controls label[for="i_3"],
#i_4:checked~.controls label[for="i_4"]{
    color: rgb(113, 239, 235);
}

.input-group,
.textarea-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.input-group input,
.textarea-group textarea {
  flex: 1;
  margin-right: 10px;
}

.button-group button {
  display: flex;
  align-items: center;
}

.button-group button i {
  margin-right: 5px;
}

.dark-mode {
  background-color: #1d2a35;
  color: white;
}
.dark-mode .left {
  background-color: #1d2a35;
  color: white;
}
.dark-mode .right {
  background-color: #1d2a35;
  color: white;
}
.dark-mode .container {
  background-color: #1d2a35;
  color: white;
}
.dark-mode .wrapper {
  background-color: #1d2a35;
  color: white;
}
.dark-mode label,h1 {
  color: white;
}
.dark-mode .input-group .textarea-group {
  background-color: #38444d;
}

.dark-mode textarea {
  background-color: #38444d;
  color: white;
}
.dark-mode input {
  background-color: #38444d;
  color: white;
}