/**
 * CSS für Universal YouTube Consent Script
 * In YooTheme: Theme Settings → Custom CSS einfügen
 * Oder in template.css hinzufügen
 */

/* Wrapper für YouTube iframes mit Overlay */
.yt-consent-wrapper,
.ext-consent-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Overlay über YouTube iframe */
.yt-consent-overlay,
.ext-consent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #ffffff;
    z-index: 100;
}

/* Click-Text im Overlay */
.yt-consent-clicktext,
.ext-consent-clicktext {
    margin-bottom: 15px;
    text-align: center;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    max-width: 400px;
}

/* Consent Button */
.yt-consent-btn,
.ext-consent-btn {
    padding: 12px 24px;
    font-size: 15px;
    cursor: pointer;
    background: #ffffff;
    color: #333;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.yt-consent-btn:hover,
.ext-consent-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.yt-consent-btn:active,
.ext-consent-btn:active {
    transform: translateY(0);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .yt-consent-clicktext,
    .ext-consent-clicktext {
        font-size: 14px;
        padding: 0 15px;
    }

    .yt-consent-btn,
    .ext-consent-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

