/**
 * Simple YouTube Manager - Frontend Styles
 * Version: 1.0.0
 */

/* Contenedor principal del video */
.syt-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Título del video */
.syt-title {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    text-align: center;
    line-height: 1.3;
}

/* Wrapper responsive para el iframe */
.syt-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 4px;
}

/* Iframe del video */
.syt-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive: Tablets y móviles */
@media (max-width: 768px) {
    .syt-container {
        margin: 20px 15px;
        padding: 20px;
    }

    .syt-title {
        font-size: 20px;
    }
}

/* Responsive: Móviles pequeños */
@media (max-width: 480px) {
    .syt-container {
        margin: 15px 10px;
        padding: 15px;
    }

    .syt-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}
