  .work-sans {
      font-family: 'Work Sans', sans-serif;
  }
          
  #menu-toggle:checked + #menu {
      display: block;
  }
  
  .hover\:grow {
      transition: all 0.3s;
      transform: scale(1);
  }
  
  .hover\:grow:hover {
      transform: scale(1.02);
  }
  
  .carousel-open:checked + .carousel-item {
      position: static;
      opacity: 100;
  }
  
  .carousel-item {
      -webkit-transition: opacity 0.6s ease-out;
      transition: opacity 0.6s ease-out;
  }
  
  #carousel-1:checked ~ .control-1,
  #carousel-2:checked ~ .control-2,
  #carousel-3:checked ~ .control-3 {
      display: block;
  }
  
  .carousel-indicators {
      list-style: none;
      margin: 0;
      padding: 0;
      position: absolute;
      bottom: 2%;
      left: 0;
      right: 0;
      text-align: center;
      z-index: 10;
  }
  
  #carousel-1:checked ~ .control-1 ~ .carousel-indicators li:nth-child(1) .carousel-bullet,
  #carousel-2:checked ~ .control-2 ~ .carousel-indicators li:nth-child(2) .carousel-bullet,
  #carousel-3:checked ~ .control-3 ~ .carousel-indicators li:nth-child(3) .carousel-bullet {
      color: #000;
  }
  .thm-blu-txt{
    color: #022a5c
  }
  .thm-col-txt{
    color: #cdb35a;
  }
  .thm-col-bg{
    background-color: #cdb35a;
  }

  th, td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
  }
  th {
    background-color: #f4f4f4;
  }

  #table-container{
      min-height: 90vh;
  }

  .inl-block{
    display: inline-block !important;
  }
  .thm-brd-clr{
    border-color: #cdb35a;
  }
  .floating-icon {
    position: fixed;
    right: 20px; /* 20px from the right edge of the screen */
    bottom: 20px; /* 20px from the bottom edge of the screen */
    z-index: 9999; /* Make sure the icon stays on top */
    display: flex;
    align-items: self-end;
}

.fade-out {
  animation: fadeOut 0.5s ease-in-out forwards;
}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
