.content-leadflow-form,
[id^="content-leadflow-form-"] {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.content-leadflow-form .form-group,
[id^="content-leadflow-form-"] .form-group {
    margin-bottom: 20px;
}
.form-group label,
[id^="content-leadflow-form-"] label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}
.form-group input[type="readonly_control"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
[id^="content-leadflow-form-"] input[type="text"],
[id^="content-leadflow-form-"] input[type="email"],
[id^="content-leadflow-form-"] textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group button[type="submit"],
[id^="content-leadflow-form-"] button[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-group button[type="submit"]:hover,
[id^="content-leadflow-form-"] button[type="submit"]:hover {
    background-color: #005177;
}

/* Podcast Episode Player Styles */
.podcast-episode-player {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
}

.podcast-episode-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.podcast-episode-image {
    flex: 0 0 auto;
    margin-right: 20px;
}

.podcast-episode-image img {
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.podcast-episode-info {
    flex: 1;
    min-width: 0;
}

.podcast-episode-title {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.podcast-episode-audio {
    width: 100%;
}

.podcast-episode-audio audio {
    width: 100%;
    border-radius: 4px;
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
    .podcast-episode-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .podcast-episode-image {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    
    .podcast-episode-image img {
        margin: 0 auto;
    }
}

/* Typeform-style (one question at a time) */
.plf-typeform-active .plf-question {
    display: none;
}

.plf-typeform-active .plf-question.active {
    display: block;
}

.plf-typeform-active .div-elementor-button {
    display: none; /* Shown only on last step via JS */
}

.plf-typeform-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 16px 0;
}

.plf-typeform-nav .plf-progress {
    flex: 1;
    text-align: center;
    font-weight: bold;
}

/* Make nav buttons inherit Elementor/Theme button styles */
.plf-typeform-nav .plf-prev,
.plf-typeform-nav .plf-next {
    cursor: pointer;
}

/* Small enhancement for keyboard navigation focus */
.plf-typeform-active .plf-question.active input,
.plf-typeform-active .plf-question.active textarea {
    outline: none;
}

/* One-by-one (frontend) minimal styles */
[id^="content-leadflow-form-"] .plf-onebyone-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 16px 0;
}
[id^="content-leadflow-form-"] .plf-onebyone-nav .plf-onebyone-progress {
    flex: 1;
    text-align: center;
    font-weight: bold;
}

/* Required field asterisk */
[id^="content-leadflow-form-"] .form-group[data-required="yes"] > label::after {
    content: " *";
    color: #d63638; /* WP admin danger red */
    margin-left: 2px;
}