/* Print-specific styles for PDF export */

@media print {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background: white;
        color: #333;
        overflow: visible;
        height: auto;
    }

    .presentation-container {
        width: 100%;
        height: auto;
        display: block;
    }

    .slide {
        display: block !important;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 11in; /* Standard US Letter height */
        background: white;
        border-radius: 0;
        box-shadow: none;
        padding: 1in;
        margin: 0;
        page-break-after: always;
        page-break-inside: avoid;
        overflow: visible;
        animation: none;
    }

    .slide:last-child {
        page-break-after: auto;
    }

    .title-slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .controls,
    .keyboard-hint {
        display: none !important;
    }

    h1 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 30px;
        border-bottom: 4px solid #667eea;
        padding-bottom: 15px;
    }

    h2 {
        font-size: 2rem;
        color: #555;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 1.5rem;
        color: #667eea;
        margin-bottom: 15px;
    }

    p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 15px;
    }

    .agenda-list li,
    .objectives-list li {
        page-break-inside: avoid;
    }

    .content-grid,
    .resources-grid {
        page-break-inside: avoid;
    }

    /* Ensure gradients and colors print well */
    .title-slide h1 {
        background: #667eea;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #333;
        background-clip: unset;
        color: #667eea;
    }
}




