  .wsb-home .clear {
    clear: both;
  }

  .wsb-home .course-description {
    font-style: italic;
  }

  .wsb-home .course-description span {
    font-weight: bold;
  }

  .wsb-home .professor {
    margin: 7px;
    width: 40%;
    background-color: #f7f7f7;
    border: dotted 1px #bcbcbc;
    padding: 14px;
    float: left;
  }

  .wsb-home .professor img {
    float: left;
    margin-right: 15px;
    width: 150px;
    height: auto;
  }

  .wsb-home .teacher {
    margin: 7px;
    width: 40%;
    background-color: #ffffff;
    padding: 14px;
    float: left;
  }

  .wsb-home .teacher img {
    float: left;
    margin-right: 15px;
    width: 150px;
    height: auto;
  }

  .wsb-home .info {
    display: table-cell;
    min-width: 180px;
  }

  .wsb-home h2,
  .wsb-home h3,
  .wsb-home h4 {
    margin-top: 35px;
    color: #900;
  }

  .wsb-home li {
    margin-bottom: 2px;
  }


  .button-group {
    text-align: center;
    width: 600px;
    margin: 0px auto;
  }

  .button-group a {
    background-color: #f7f7f7;
    border: solid 1px #bcbcbc;
    border-radius: 3px;
    width: 120px;
    padding: 10px 5px;
    margin: 10px 2px;
    display: inline-block;
    text-align: center;
  }

  @media only screen and (max-width: 680px) {
    .wsb-home .professor {
      width: 100%;
    }

    .wsb-home .professor img {
      float: none;
    }

    .wsb-home .teacher {
      width: 100%;
    }

    .wsb-home .teacher img {
      float: none;
    }

    .button-group a {
      display: block;
    }
  }



  /* ***** Custom Design Puls Carousel ***** */
  #wsb-custom-module-list #wsb-date-range {
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    position: absolute;
    bottom: 15px;
    text-align: center;
  }

  #wsb-custom-module-list .dp-module-list-processed {
    margin: 0;
  }

  #wsb-custom-module-list nav.dp-module-list-basic {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #dcdcdc;
  }

  /* Unordered list reset */
  #wsb-custom-module-list ul.fa-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
  }

  /* Base style for all slides (Hidden by default) */
  #wsb-custom-module-list ul.fa-ul>li {
    position: absolute;
    width: 33%;
    height: 50%;
    background-color: #ce6769;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    /* Scaled down and centered */
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: 1;
  }


  #wsb-custom-module-list ul.fa-ul>li a {
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    padding: .25em;
    text-align: center;
  }

  #wsb-custom-module-list ul.fa-ul>li a:hover {
    text-decoration: underline;
  }

  #wsb-custom-module-list ul.fa-ul>li a span.fa-li {
    display: none;
  }

  /* Specific style for the blank slide */
  #wsb-custom-module-list ul.fa-ul>li.blank {
    background-color: transparent;
    color: #7f8c8d;
    border: 3px dashed #bdc3c7;
  }

  /* Visible States */
  #wsb-custom-module-list ul.fa-ul>li.prev {
    left: 20%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.6;
    z-index: 2;
    /* Prevent clicking on previous slide */
    pointer-events: none;
    cursor: default;
  }

  #wsb-custom-module-list ul.fa-ul>li.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    /* Center and slightly larger */
    opacity: 1;
    z-index: 3;
    background-color: #9b0000;
    /* Highlight the active item */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  #wsb-custom-module-list ul.fa-ul>li.active.blank {
    background-color: transparent;
    /* Keep blank styling when active */
  }

  #wsb-custom-module-list ul.fa-ul>li.next {
    left: 80%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.6;
    z-index: 2;
    /* Prevent clicking on next slide */
    pointer-events: none;
    cursor: default;
  }

  /* Navigation Buttons */
  #wsb-custom-module-list .carousel-btn {
    position: absolute;
    z-index: 10;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  #wsb-custom-module-list .carousel-btn:hover {
    background: #1a252f;
  }

  #wsb-custom-module-list #wsb-previous-module {
    left: 10px;
  }

  #wsb-custom-module-list #wsb-next-module {
    right: 10px;
  }




  /* ******************************** */


  /* PROFILE CARD STYLING */
  .profile-card {
    width: 100%;
    padding: 25px;
    background-color: #fff;
    border: 2px solid #dcdcdc;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }

  /* PROFILE IMAGE */
  .profile-card img {
    width: 100%;
    /*height: 100%;*/
    border-radius: 50%;
    border: 3px solid #007bff;
    /*margin: 15px;*/
  }

  .profile-card ul {
    padding: 10px;
    font-size: 1.4em;
    list-style-type: none;
    margin: 0;
  }

  .profile-card li {
    text-align: left;
    line-height: 1.4;
  }

  .profile-card li .ig-type-icon {
    display: inline-block;
  }

  .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
  }

  .column-double {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 2;
  }

  .profile-card table,
  .profile-card th,
  .profile-card td {
    border: none;
    border-collapse: collapse;
  }

  .profile-card table {
    margin-top: 15px;
    font-size: 1.25em;
    text-align: left;
  }

  .profile-card table tr td:first-child {
    font-weight: bold;
    vertical-align: top;
    white-space: nowrap;
    padding-right: 15px;
  }

  #wsb-ta-profile-cards {}

  #wsb-ta-profile-cards summary {
    font-size: calc(1.3rem + 0.6vw);
  }

  #wsb-ta-profile-cards summary h3 {
    display: inline;
  }