/* --- ESTILOS GENERALES Y PÁGINA PRINCIPAL --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    /*background-color: #f0f4f0; /* Un verde muy pálido de fondo */
	background-image: url("fondo-azul.jpg");
	background-repeat: repeat-x;
    color: #333;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.main-container h1 {
    color: #2c6b2f; /* Titulo del index Verde esperanza oscuro */
}

#openPlayerBtn {
    background: linear-gradient(145deg, #5cb85c, #4cae4c); /* Verde esperanza */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#openPlayerBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* --- ESTILOS DEL REPRODUCTOR --- */
.player-body {
    background-color: #e9f5e9; /* Fondo verde muy claro */
    overflow: hidden;
    margin: 0;
}

#player-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    border: 1px solid #d8e8d8;
}

/* --- HEADER --- */
#player-header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    /*background-color: #ffffff;*/
    border-bottom: 1px solid #d8e8d8;
    cursor: move; /* Permite mover la ventana */
}

.logo-container {
    width: 60px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.logo-container img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.radio-info h1 {
    margin: 0;
    font-size: 1.1rem !important;
    color: #123C5C;
    font-weight: 600;
}

.radio-info p {
    margin: 0;
    font-size: 0.90rem !important;
    font-style: italic;
    color: #555;
}

/* --- MAIN CONTENT --- */
#player-main {
    flex-grow: 1;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.now-playing #current-artist {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin: 0;
}

.now-playing #current-song {
    font-size: 16px;
    color: #004E9B;
    margin: 5px 0 15px 0;
    font-weight: bold;
}

/* --- VISUALIZADOR --- */
#visualizer {
    width: 100%;
    height: 30px; /* Altura del visualizador */
    display: block;
    margin-bottom: 20px;
}

/* --- CONTROLES Y ÚLTIMA CANCIÓN --- */
#audio-player {
    width: 100%;
    margin-bottom: 15px;
}

.last-played {
    font-size: 14px;
    color: #fff;
}
.last-played h4 {
    margin: 0 0 5px 0;
    font-weight: normal;
}
.last-played p {
    margin: 0;
    font-style: italic;
}


/* --- FOOTER --- */
#player-footer {
    padding: 10px;
    background-color: #ffffff;
    text-align: center;
    font-size: 11px;
    color: #777;
    border-top: 1px solid #d8e8d8;
}