.tooltip {
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
}

.tooltip-inner {
    width: auto;
    max-width: 100%;
    white-space: normal;
    padding: 20px;
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer */
}

.scroll-box {
    width: auto;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
}

:root {
    --audio-bg-light: var(--bs-light);
    --audio-bg-dark: var(--bs-dark);
    --audio-border-light: var(--bs-gray-400);
    --audio-border-dark: var(--bs-gray-700);
    --audio-text-light: var(--bs-gray-800);
    --audio-text-dark: var(--bs-gray-300);
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 10px;
    transition: background 0.3s, border 0.3s, color 0.3s;
}

body:not(.dark-mode) .audio-player {
    background: var(--audio-bg-light);
    border: 1px solid var(--audio-border-light);
    color: var(--audio-text-light);
}

body.dark-mode .audio-player {
    background: var(--audio-bg-dark);
    border: 1px solid var(--audio-border-dark);
    color: var(--audio-text-dark);
}

.audio-player button {
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
}

.audio-player input[type="range"] {
    -webkit-appearance: none;
    height: 5px;
    background: var(--bs-gray-400);
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

.audio-player .progressBar {
    width: 60%;
}

.audio-player input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: var(--bs-primary);
    border-radius: 50%;
    cursor: pointer;
}

.audio-time {
    font-size: 14px;
    width: 50px;
}

.volumeSlider {
    width: 15%;
}

.volumeIcon {
    font-size: 20px;
    cursor: pointer;
}