/* Custom Video Player Styles */
.custom-video-player {
    position: relative;
    width: 100%;
    background-color: #000;
}

.custom-video-player video {
    width: 100%;
    display: block;
}

.custom-video-player .video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    padding: 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.custom-video-player .play-pause-btn,
.custom-video-player .fullscreen-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    fill: #acbeb4;
}

.custom-video-player .play-pause-btn {
    margin-right: 10px;
}

.custom-video-player .fullscreen-btn {
    margin-left: 10px;
}

.custom-video-player .progress-bar {
    flex-grow: 1;
    height: 5px;
    background-color: #5d524f;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
}

.custom-video-player .progress {
    height: 100%;
    background-color: #629a94;
    width: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.custom-video-player .time {
    font-size: 14px;
    color: #acbeb4;
    min-width: 100px;
    text-align: center;
}

/* Fullscreen styles */
.custom-video-player:-webkit-full-screen {
    width: 100%;
    height: 100%;
}

.custom-video-player:-moz-full-screen {
    width: 100%;
    height: 100%;
}

.custom-video-player:-ms-fullscreen {
    width: 100%;
    height: 100%;
}

.custom-video-player:fullscreen {
    width: 100%;
    height: 100%;
}

.custom-video-player:fullscreen video {
    height: 100%;
}

/* Custom Audio Player Styles */
.custom-audio-player {
    display: flex;
    align-items: center;
    background-color: #222724;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    width: 88%;
}

.custom-audio-player .play-pause-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease;
}

.custom-audio-player .play-pause-btn:hover {
    transform: scale(1.1);
}

.custom-audio-player .play-pause-btn svg {
    width: 24px;
    height: 24px;
    fill: #acbeb4;
    transition: fill 0.3s ease;
}

.custom-audio-player .play-pause-btn:hover svg {
    fill: #629a94;
}

.custom-audio-player .progress-bar {
    flex-grow: 1;
    height: 5px;
    background-color: #4f5d55;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.custom-audio-player .aprogress {
    height: 5px;
    background-color: #629a94;
    border-radius: 5px;
    width: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.custom-audio-player .time {
    font-size: 12px;
    color: #acbeb4;
    min-width: 70px;
    text-align: right;
}
