/* style.css */

.audio-player-container {
    background-color: #fff;
    border-radius: 10px;

    margin-bottom: 30px;
    width: 100%;
    max-width: 700px;
    padding: 20px;
    box-sizing: border-box;
    margin:auto;
}

.audio-player.no-image {
    display: flex;
    flex-direction: row; /* Asegura que el botón esté a la izquierda y los controles a la derecha */
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.player-controls {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
    align-items: center;
}

.audio-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #f1593c;
    border-radius: 4px;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #666;
}

.player-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinea los elementos a la izquierda */
    gap: 15px;
}

/* Estilos específicos para el nuevo botón de texto */


.play-pause-btn {
    font-family: Gill Sans;
    background-color: #eae2d6;
    color: #611232 !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.4em;
    font-weight: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
    padding: 0em;
    letter-spacing: -.2em;
box-shadow: inset 0 0 0 2px #611232;
}

.audio-play-pause-btn:hover {
 background-color: #611232 !important;
color: #fff !important;
}

.text-button-pp{
    color: #611232;
}
.play-pause-btn.text-button {
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto; /* El botón se ajusta al tamaño del texto */
    min-width: 150px;
    text-align: center;
    text-transform: none;
    font-weight: 300;
    margin:auto;
    line-height: 0px;
    border-radius: 1em !important;
    letter-spacing: -.2em !important;
    background-color: #eae2d6;
    color: #611232 !important;
    border: 2px solid #611232 !important;
    box-shadow: inset 0 0 0 0px #611232;
}

.play-pause-btn.text-button:hover {
background-color: #611232 !important;
color: #fff !important;
}

.play-pause-btn.text-button:focus {
  /*  outline: 3px solid #0056b3;
    outline-offset: 2px;*/
}

.volume-slider {
    width: 100px;
    -webkit-appearance: none;
    height: 5px;
    background: #d3d3d3;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #f1593c;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #f1593c;
    border-radius: 50%;
    cursor: pointer;
}

/* Responsividad para pantallas pequeñas */
@media (max-width: 600px) {
    .audio-player.no-image {
        flex-direction: column;
        text-align: center;
    }

    .player-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .volume-slider {
        width: 80%;
    }
}

.audio_player_1{
    text-align: center;
    width:100%;
  
}
.noseve{
opacity:0;
width:10%;
margin:auto;
    text-align: center;
}
.siseve{
  opacity:1;  
    width:100%;
  transition: opacity 2s ease;
    transition: width 2s ease;
    border: 1px solid silver;
  padding: 20px;
  border-radius: 40px;
}
