
.audio-playerz {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    margin: 0px auto;
    width: 80%;

    font-size: 18px;
    border-radius: 15px;
}

.player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: normal;
}

.player-details {
    text-align: center;
    margin-bottom: 10px;
    width: 90%;
}

.player-details h2 {
    margin: 10px 0 10px 0;
    font-size: 1em;
}

.player-details p {
    margin: 0;
    font-size: 0.8em;
    text-align: justify;
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%
}

.control-button {
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 0px;
}

.control-button img {
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
}

.control-button-list {
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}

.control-button-list img {
    width: 20px;
    height: 20px;
}

.control-progress {
    width: 90%;
    margin: 0px 0;
}

.control-progress input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    padding: 0;
    margin: 0;
    transition: background 0.3s;
}

.control-progress input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 5px;
    height: 5px;
    background: #5B5B5B;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.control-progress input[type="range"]::-moz-range-thumb {
    width: 5px;
    height: 5px;
    background: #0093ff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.play-buttons {
    width: 90%;
}

.active {
    background-color: #d6d497;
    color: #fff
}
.timer {
    width: 90%;
    display: flex;
    justify-content: space-between;
    font-size: 0.7em;
    font-weight: bold;
    color: #191b27;
    margin: 0px 0;
}

.time-left, .time-right {
    display: inline-block;
}

.episode-list {
    width: 100%;
    text-align: left;
    margin-top: 20px;
    padding: 0;
    border-color: #ccc;
    border: 2px;
}

.episode-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    border-color: #ccc;
}

.episode-list li {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.8em;
    text-align: left;
    border-bottom: 1px solid #ccc;
    height: 40px;
    
}

.episode-list li:hover {
    background-color: #d6d497;
    color: #fff
}

.episode-list li:active {
    background-color: #f2a83d;
    color: #fff
}

.episode-list li .control-button-list img {
    width: 30px;
    height: 30px;
    
}

.episode-title {
    flex: 1;
    text-align: left;
    
}