.le-tts-player {
	margin-left: 5px;
	/*margin-left: 0px;*/
	font-size: 12px;
}

.le-tts-player audio{
    /*width: 101%;*/
    width: 100%;
    border: 1px solid #4db2ec;
    border-radius: 8px;
    background-color: #f0f0f0;
	height: 35px;
}

@media screen and (max-width: 767px) {
	.le-tts-player {
		margin-left: 0px;
		font-size: 12px;
	}
	
	.le-tts-player audio{
		width: 100%;
	}	
}

.f-audio-player {
    color: #333;
    margin: 10px auto;
}

/* Header text */
.f-player-header {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

/* Body of the fake player */
.f-player-body {
	height: 35px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #4db2ec;
    border-radius: 8px;
    padding: 8px 10px;
}

/* Play button */
.f-play-button {
    width: 16px;
    height: 16px;
    background-color: #333;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    cursor: pointer;
    margin-right: 10px;
}

/* Progress bar container */
.f-progress-bar {
    flex: 1;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

/* Progress bar fill */
.f-progress {
    width: 0%;
    height: 100%;
    background-color: #333;
    transition: width 0.3s;
}

/* Time display */
.fake-time {
    margin-right: 10px;
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

/* Volume button */
.f-volume-button {
    width: 16px;
    height: 16px;
    background-color: #333;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.f-volume-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}


