.embedder-pro {
    max-width: 100%;
    margin: 1em 0;
    position: relative;
    overflow: hidden;
}

.embedder-pro iframe,
.embedder-pro blockquote {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border: none !important;
}

/* Styles */

.ep-style-default {
    background: transparent;
    padding: 0;
}

.ep-style-dark {
    background: #121212;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.ep-style-rounded-shadow {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.ep-style-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.ep-style-borderless {
    background: transparent;
    padding: 0;
}

/* Consent Placeholder */

.ep-consent-placeholder {
    cursor: pointer;
    user-select: none;
    background: #ccc;
    color: #000;
    padding: 30px 10px;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    border: 2px dashed #999;
    transition: background-color 0.3s ease;
}

.ep-consent-placeholder:hover {
    background-color: #bbb;
}