/* Fullscreen protected PDF viewer for Investor Relations */
.ir-pdf-viewer {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    flex-direction: column;
    background: rgba(10, 12, 16, 0.96);
    color: #fff;
}

.ir-pdf-viewer.is-open {
    display: flex;
}

.ir-pdf-viewer__header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    background: #11151c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ir-pdf-viewer__title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ir-pdf-viewer__close {
    appearance: none;
    border: 0;
    border-radius: 4px;
    background: #c8102e;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.ir-pdf-viewer__close:hover {
    background: #a50d25;
}

.ir-pdf-viewer__body {
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 12px 40px;
    user-select: none;
    -webkit-user-select: none;
}

.ir-pdf-viewer__pages {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ir-pdf-viewer__pages canvas {
    width: 100% !important;
    height: auto !important;
    display: block;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.ir-pdf-viewer__video-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.ir-pdf-viewer__video {
    width: 100%;
    max-height: calc(100vh - 120px);
    display: block;
    background: #000;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.ir-pdf-viewer__status {
    text-align: center;
    padding: 48px 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.ir-pdf-viewer__status.is-error {
    color: #ffb4b4;
}

body.ir-pdf-viewer-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .ir-pdf-viewer__header {
        padding: 10px 12px;
    }

    .ir-pdf-viewer__body {
        padding: 12px 8px 28px;
    }

    .ir-pdf-viewer__title {
        font-size: 13px;
    }
}
