/**
 * Simple Iframe Embed - Stylesheet
 */

.iframe-embed-wrapper {
    position: relative;
    margin: 20px 0;
}

.iframe-embed {
    border: none;
    display: block;
}

.iframe-embed-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

/* Responsive wrapper for video embeds */
.iframe-embed-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.iframe-embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
