/* Notes Specific Styles */
.notes-viewer-wrapper {
    width: 100%;
    height: 80vh;
    max-height: 800px;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.notes-viewer-wrapper iframe {
    width: 100%;
    height: 100%;
}

.video-details-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin-top: 24px;
}

.video-details-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badge {
    background: var(--color-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Hidden elements */
.hidden {
    display: none !important;
}

/* Watch Page Animation */
.watch-page {
    padding: 20px 0;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
