.contentContainer {
    width: 80%;
    /* background-color: black; */
}

.eventSection {
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: white;
}

.fa-calendar {
    padding-right: 20px;
}

a, a:hover {
    text-decoration: none;
    color: inherit;
}

.eventSection:nth-child(odd) {
    background-color: aliceblue;
}

.eventSection:nth-child(even) {
    background-color: white;
}

#dateContainer {
    width: 100%;
    text-align: start;
}


input:disabled {
    background-color: transparent;
    color: rgb(105, 105, 105);
    border: none;
}

.eventDescription {
    align-items: center;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    min-height: 200px;
} */

.eventDescription h5 {
    align-self: flex-start;
    width: 100%;
}

.eventDescription input {
    align-self: flex-end;
    width: 100%;
}

.eventImage {
    aspect-ratio: 1/3;
    max-height: 350px;

}



.activeAudio {
    background-color: black;
}

.disableAudio {
    background-color: gray;
}

.bi-play-circle {
    font-size: 50px;
}

.activePlayButton {
    color: white;
}

.disablePlayButton {
    color: white;
}

.playAudioLanguageContainer {
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 10px;
}



/* Mobile devices */
@media (max-width: 1000px) {

    .contentContainer {
        width: 100%;
        margin: 0%;
    }
    #dateContainer {
        width: 100%;
    }
}

.webURL {
    color: blue;
  }

.card-text {
    white-space: pre-wrap;
}


.card-description {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* WebKit-based browsers */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    /* Fallback for non-WebKit browsers */
    max-height: 4.5em; /* Adjust based on your line height (1.5em per line × 3 lines) */
    line-height: 1.5em; /* Set your desired line height */
  }

  .card-description.expanded {
    -webkit-line-clamp: unset; /* Remove line clamp when expanded */
    max-height: none; /* Remove max-height restriction when expanded */
  }

  .btn-link {
    color: #007bff; /* Bootstrap primary color */
    text-decoration: none;
  }

  .btn-link:hover {
    text-decoration: underline;
  }

  .hidden {
    display: none; /* Hide the button */
  }

#copyAudioButton {
    /* Position and layout */
    float: right;
    margin-right: auto;
    margin-bottom: 1rem;
    margin-top: 1rem;
    
    /* Button styling */
    height: 40px;
    padding: 0.375rem 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Visual style */
    background-color: rgb(255, 255, 255);
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
  }
  
  #copyAudioButton:hover {
    background-color: #0c0d0d;
    border-color: #dee2e6;
  }
  
  #copyAudioButton:active {
    transform: scale(0.98);
  }
  
  #copyAudioButton .bi-clipboard {
    font-size: 1rem;
  }
  .copy-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 12px;
    right: 0;
    top: 100%;
  }
  
  .copy-dropdown-content.show {
    display: block;
  }
  
  .copy-dropdown {
    position: relative;
  }
  
  .language-link {
    background-color: #4a90e2;
    color: white;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .language-link:hover {
    background-color: #357abd;
  }
  
  .copy-all-btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 8px;
  }
  
  .copy-all-btn:hover {
    background-color: #333;
  }

/* Add New Event Button Styling */
#dropdownMenuButton {
    background-color: white !important;
    color: black !important;
    border: 1px solid black;
    transition: all 0.3s ease;
}

#dropdownMenuButton:hover {
    background-color: white !important;
    color: #35b1cf !important; 
    border-color: #070707;
}

#dropdownMenuButton:active,
#dropdownMenuButton:focus,
#dropdownMenuButton.show {
    background-color: white !important;
    color: #35b1cf !important; 
    border-color: #070707;
    box-shadow: 0 0 0 0.2rem rgba(20, 20, 20, 0.25);
}

#dropdownMenuButton:not(.show):not(:hover):not(:focus):not(:active) {
    color: black !important;
}
