/* AI YouTube Auto-Poster - Frontend Video Styles */

.aiyap-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    margin: 20px 0;
}

.aiyap-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .aiyap-video-wrapper {
        border-radius: 4px;
    }
}
