/* Custom styles for AI BootCamp LMS */

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quiz-option {
    transition: all 0.2s ease;
}

.quiz-option:hover {
    transform: translateX(4px);
}

.certificate-frame {
    border: 2px solid #e5e7eb;
    padding: 2rem;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}