/* Estilos para el reproductor fijo */
        #fixed-player {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #333;
            color: white;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }
        #fixed-player .station-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        #fixed-player img {
            width: 50px;
            height: 50px;
            border-radius: 50px;
        }
        #fixed-player button {
            color: white;
        }

        /* Estilos para contenedor estaciones */
        .station-item .card-title {
            font-size: .8em;
        }
        .station-item .card-text {
            font-size: 0.8em;
        }
        .station-item {
            text-align: center;
        }

        /* Estilos para el formulario de búsqueda */
        #search-form {
            background-color: #f8f9fa;
            padding: 10px;
            border-top: 1px solid #dee2e6;
            display: none; /* Ocultar el formulario inicialmente */
        }