.container{
    width: 80%;
  }

  /* Row styling */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  
  /* Column styling */
  .col-8 {
    width: 60%; /* 8/12 columns = 66.67% */
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .col-4 {
    width: 33.3333%; /* 4/12 columns = 33.33% */
    padding-left: 15px;
    padding-right: 15px;
  }
  .mb-2{
    margin-bottom: 10px !important;
  }

  .text-justify{
    text-align: justify;
  }

  .bio{
    font-size: 15px;
  }

  .admin-img{
    width: 100%;
    height:  auto !important;
  }

  .main-img{
    width: 60%;
    height:  auto !important;
  }




  .temp-list {
    list-style-type: none;
  }
  
  .temp-list li {
    display: inline-block;
  }
  
  .temp-list input[type="radio"][id^="cb"] {
    display: none;
  }
  
  .temp-list label {
    border: 1px solid #fff;
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
  }
  
  .temp-list label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
  }
  
  .temp-list label img {
    height: 100px;
    width: 100px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
  }
  
  :checked + label {
    border-color: #ddd;
  }
  
  :checked + label:before {
    content: "✓";
    background-color: grey;
    transform: scale(1);
  }
  
  :checked + label img {
    transform: scale(0.9);
    box-shadow: 0 0 5px #000000;
    z-index: -1;
  }

  input[type=radio]:checked+label:before {
    color: #ffffff;
  }

  .form-group {
    background: #4b43765c;
    padding: 5px 10px;
    border-radius: 10px;
    margin-bottom: 5px;
  }

  div#loader {
    float: right;
    margin-top: 15px;
  }
  /* Optional: Ensure that columns stack on smaller screens */
  @media (max-width: 768px) {
    .col-8, .col-4 {
      width: 100%;
    }
  }
  