.audio-title-label {
  font-size: 0.9rem; /* Smaller font size for the label */
  color: #333; /* Optional: Adjust the color to fit your site's theme */
}


.form-check-input-lg {
    width: 1.3em;
    height: 1.3em;
    transform: scale(1.3);
    border-radius: 50% !important;
  }
          .card {
          position: relative;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
      }
      .card-img-top {
    max-height: 200px;
    object-fit: cover;
  }

  .card-description {
    min-height: 60px;
  }
      .form-check {
          position: absolute;
          top: 0.7em;
          right: 0.7em;
      }
      .selected .card-body {
          background-color: #edd4e4;
      }
  
      #filter-age {
          margin: 0 auto; /* center the slider */
          margin-top: 10px;
          width: 80%; /* adjust this value to match the width of other elements */
          display: flex;
          flex-direction: column;
          justify-content: center;
      }
      
      .noUi-connect {
          background: #e0007a !important;
      }
      .noUi-tooltip {
          color: #e0007a !important;
      }
  
      /* Change primary color to #e0007a */
      .btn-primary,
      .btn-primary:hover,
      .btn-primary:focus,
      .btn-primary:active {
          background-color: #e0007a !important;
          border-color: #e0007a !important;
      }
  
      .navbar-light .navbar-nav .nav-link {
          color: #e0007a !important;
      }
  
      .navbar-light .navbar-nav .active>.nav-link,
      .navbar-light .navbar-nav .nav-link.active,
      .navbar-light .navbar-nav .nav-link.show,
      .navbar-light .navbar-nav .show>.nav-link {
          color: #e0007a !important;
      }
  
      /* Change background color of navbar collapse */
      .navbar {
          background-color: #e0007a !important;
      }
  
      /* Apply to button groups */
      .btn-group-toggle .btn:not(:disabled):not(.disabled).active,
      .btn-group-toggle .btn:not(:disabled):not(.disabled):active {
          color: #fff;
          background-color: #e0007a !important;
          border-color: #e0007a !important;
      }
  
      /* Change color of btn-group-toggle */
      .btn-group-toggle .btn {
          color: #e0007a !important;
      }
      .btn-group-toggle .btn.active {
          background-color: #e0007a !important;
          color: #fff !important;
          border-color: #e0007a !important;
      }
  
      /* Change color of .btn-outline-primary and its border */
      .btn-outline-primary {
          color: #e0007a !important;
          border-color: #e0007a !important;
      }
      .btn-outline-primary:hover,
      .btn-outline-primary:focus,
      .btn-outline-primary:active {
          background-color: #ff47ac !important;
          border-color: #e0007a !important;
          color: #fff !important;
      }
  
      /* Change color of all checkboxes */
      .form-check-input:checked {
          background-color: #e0007a !important;
          border-color: #e0007a !important;
      }
      /* Change color of checkbox border when not checked */
      input[type="checkbox"]:checked {
          color: #e0007a !important;
          background-color: #e0007a !important;
          border-color: #e0007a !important;
          filter: hue-rotate(114.8deg);
      }
  
      .remove-image {
          position: absolute;
          top: 0;
          right: 0;
          z-index: 1;
      }
  
  
      .audio-sample-form {
          display: flex;
          align-items: center;
          margin-bottom: 20px;
      }
  
      .audio-sample-form label {
          flex: 1;
          margin-right: 10px;
      }
  
      .audio-sample-form audio {
          flex: 2;
      }
  
      .audio-sample-form button {
          margin-left:10px;
      flex: 1;
      max-width: 100px; /* Change this value to your desired maximum width */
  }
  
  
  
  .floating-button-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 10;
      animation: float-in 0.5s ease-in-out;
  }
  
  .float-out {
      animation: float-out 0.5s ease-in-out;
  }
  
  @keyframes float-out {
      0% { transform: translateX(0); }
      100% { transform: translateX(100%); }
  }
  
  @keyframes float-in {
      0% { transform: translateX(100%); }
      100% { transform: translateX(0); }
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.add-actor-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #e0007a;
    color: white;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
  .floating-button {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #e0007a;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  .floating-button:hover {
    transform: scale(1.1);
  }
  
  .floating-button i {
    line-height: 56px;
    font-size: 24px;
  }
  
  .counter {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: red;
    color: white;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    display: none;
  }
  
  .selected-cards .counter {
    display: block;
    animation: pop-in 0.2s ease-in-out;
  }
  
  @keyframes pop-in {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
  }
  
  .navbar-dark .navbar-nav .nav-link {
      color: rgba(255,255,255,.8);
  }
  

  /* .fade {
    animation-name: fade;
    animation-duration: 2s;
  }
  
  @keyframes fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  } */

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50%);
}
.modal.show .modal-dialog {
  transform: translate(0, 0);
}


.row {
  display: flex;
  align-items: stretch;
}

.row .col-lg-6 {
  display: flex;
  flex-direction: column;
}

.row .col-lg-6 .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}


.audio-container {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #e0007a transparent;
  height: 100px; /* or whatever height you want the audio container to be */
}

::-webkit-scrollbar {
  height: 6px;  /* Adjust this to make the scrollbar thinner or thicker */
  width: 6px;  /* Adjust this to make the scrollbar thinner or thicker */
}

::-webkit-scrollbar-thumb {
  background-color: #e0007a;
  border-radius: 8px;  /* Adjust this to change the roundness of the scrollbar */
}

audio {
  width: 230px; /* adjust to change how narrow the audios can get */
  padding-right: 5px;
}
