/**
 * Post to Podcast - Public CSS
 */

.post-to-podcast-player {
    background-color: var(--primary-dark-color, #f9f9f9);
    border: 1px solid var(--primary-dark-color, #e0e0e0);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.post-to-podcast-player h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--wp--preset--color--text, #333);
}

.post-to-podcast-player audio {
    width: 100%;
    border-radius: 30px;
    outline: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    .post-to-podcast-player {
        padding: 15px;
    }
}
