.left-side {
    float: left;
    height: 100%;
}

.right-side {
  display: none;
    background-color: green;
    float: right;
    right: 0;
    height: 100vh;
    padding: 0;
    margin: 0;
    position: fixed;
    align-items: center;
}

.right-side ul{
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.right-side ul li {
    margin: auto;
}

.submissions_table {
    border: 1px solid black;
}
.submissions_table tr, .submissions_table td {
    border: 1px solid black;
    border-collapse: collapse;
}
.title-row {
    text-align: center;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 2.307rem;
    height: 1.31rem;
    margin-left: 8px;
    margin-right: 8px;
  }
  
  /* 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-color: #23232e;
    -webkit-transition: .4s;
    transition: .4s;
    padding: 1px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 1rem;
    width: 1rem;
    left: 0.154rem;
    bottom: 0.154rem;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  

  
  input:checked + .slider:before {
    -webkit-transform: translateX(1rem);
    -ms-transform: translateX(1rem);
    transform: translateX(1rem);
  }
  
  #switch-container {
    display: flex;
    align-items: center;
  }

  .problem-header-details {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 16px;

  }

  .problem-header-row {

  }

  .problem-header-solutions {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 16px;
  }

.problem-header-tags {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 8px;
}

.tag-link a {
  color: black;
}

.problem-header a {
  text-decoration: none;
  color: blue;
}


.tag-link {
  font-size: 0.75rem;
  background-color: aqua;
  border-radius: 0.5rem;
  color: black;
}

