.section{
    border: 1px solid lightgrey;
    padding: 5px 15px;
    border-radius: 12px;
}

.assignmentFile{
    display: none;
}

.assignmentUploadLabel{
    text-align: center;
    width: 100%;
    border: 1px gray dashed;
    border-radius: 15px;
}

#uploadedFileName{
    font-size: larger;
    color: #E25BC8;
  }

.studentTh{
    background-color: #e0e0e0;
    font-weight: bold;
}
.studentTd{
    border: 1px solid #e0e0b4;
}
#studentTable th,#problemTable th{
    font-weight: bold;
}

.rounded-circle{
    height: 20px;
    width: 20px;
    display: inline-block;
    margin: 0 5px;
}

.studentResult{
    color: #007bff;
    cursor: pointer;
}

.studentResult:hover{
    text-decoration: underline;
}

.questionCard{
    align-items: center;
    border: 1px solid black;
    padding: 10px;
    min-height:50px;
    width: 100%;
    background-color:white;
    border-radius: 5px;
    margin: 10px 0;
}

.infoCircle{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: inline;
    text-align: center;
    align-items: center;
    padding-top: 3px;
}

.questionDetails,.studentDetails{
    cursor: pointer;
    color: blue;
}

#questionDetailDiv{
    border: 1px solid black;
    padding: 10px;
    width: 100%;
    background-color:white;
    border-radius: 5px;
    margin: 10px 0;
}

.questionStudentCard,#studentQuestionNoDiv{
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid black;
}

.col-2,.col-3,.col-4{
    word-break: break-all;
}

.sectionInput:disabled{
    cursor: not-allowed;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 23px;
    transform: scale(0.7);
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 23px;
    width: 32px;
    left: 0px;
    bottom: 0px;
    background-color: white;
    border: 1px solid #707070;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(28px);
    -ms-transform: translateX(28px);
    transform: translateX(28px);
  }

  /* Rounded sliders */
.slider.round {
    border-radius: 1rem;
  }
  
  .slider.round:before {
    border-radius: 1rem;
  }