body {
            font-family: Arial, sans-serif;
            background-color: #000;
            color: white;
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 700px;
            margin: 0px auto;
            padding: 15px;
            background-color: black;

        }
        .episode {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .image-container {
            width: 160px;
            height: 100px;
            background-color: #121212;
            margin-right: 15px;
            border-radius: 3px;
            overflow: hidden;
            position: relative; 
            left: -8px;/* Enable positioning inside the container */
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 69px;
            color: white;
            background-color: rgba(0, 0, 0, 0.); /* Semi-transparent background */
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .image-container:hover .play-button {
            background-color: rgba(0, 0, 0, 0.); /* Darker on hover */
        }
        .episode-info {
            font-size: 16px;
            flex-grow: 1;
        }
        .episode-title {
            font-size: 18px;
            margin: 0;
        }
        .episode-length {
            font-size: 14px;
            color: #b3b3b3;
        }
        .episode-description {
            margin: 5px 0;
            font-size: 14px;
            color: #b3b3b3;
        }
    </style>