:root{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;line-height:1.5;font-weight:400;color-scheme:light dark;color:#ffffffde;background-color:#1a1a1a;font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*{box-sizing:border-box;margin:0;padding:0}body{margin:0;min-width:320px;min-height:100vh}#root{width:100%;height:100vh}.app-container{height:100vh;width:100%;background-color:#1a1a1a}.app-main{display:flex;height:100vh;overflow:hidden}.main-content-wrapper{flex:1;display:flex;flex-direction:column;overflow:hidden;margin-left:0;transition:margin-left .3s cubic-bezier(.4,0,.2,1)}.main-content-wrapper.panel-visible{margin-left:320px}.app-header{padding:1rem 2rem;padding-left:calc(36px + 2rem);background-color:#242424;border-bottom:1px solid #333;display:flex;align-items:center;position:relative;z-index:5;transition:padding-left .3s cubic-bezier(.4,0,.2,1)}.main-content-wrapper.panel-visible .app-header{padding-left:1rem}.app-header h1{font-size:1.5rem;color:#fff;margin:0}.burger-menu{background:#2a2a2a;border:1px solid #333;border-radius:6px;cursor:pointer;padding:.5rem;width:36px;height:36px;display:flex;flex-direction:column;justify-content:center;gap:4px;transition:left .3s cubic-bezier(.4,0,.2,1),border-color .2s ease;position:fixed;left:1rem;top:1rem;z-index:20;margin-right:1rem;will-change:left}.main-content-wrapper.panel-visible .burger-menu{left:calc(284px - 1rem)}.burger-menu:hover{background:#333;border-color:#646cff}.burger-menu span{display:block;width:100%;height:2px;background-color:#fff;border-radius:2px;transition:all .3s ease}.content-split-container{flex:1;display:flex;overflow-x:auto;overflow-y:hidden;flex-direction:row-reverse}.main-content{flex:1;display:flex;flex-direction:column;overflow:hidden;transition:width .1s ease-out;min-width:600px}.resource-panel{width:320px;background-color:#242424;border-right:1px solid #333;display:flex;flex-direction:column;height:100vh;position:absolute;left:0;top:0;transform:translate(-100%);opacity:0;transition:transform .3s cubic-bezier(.4,0,.2,1),opacity .3s cubic-bezier(.4,0,.2,1)}.resource-panel.visible{transform:translate(0);opacity:1}.resource-panel.hidden{transform:translate(-100%);opacity:0}.resource-panel-header{padding:1rem;padding-left:0;border-bottom:1px solid #333;display:flex;align-items:center;gap:0;min-height:69px}.burger-placeholder{width:0;flex-shrink:0}.references-icon{margin-left:1rem;color:#fff;flex-shrink:0}.resource-panel-header h3{font-size:1rem;color:#fff;margin:0;padding-left:.5rem}.resource-list{flex:1;overflow-y:auto;padding:.5rem}.no-resources{text-align:center;color:#888;padding:2rem 1rem;font-size:.9rem}.query-group{margin-bottom:1rem}.query-separator{height:1px;background:linear-gradient(to right,transparent,#646cff,transparent);margin:1.5rem 0;opacity:.5}.query-label{font-size:.75rem;color:#888;padding:.5rem;margin-bottom:.5rem;font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.resource-item{background-color:#2a2a2a;border:1px solid #333;border-radius:6px;padding:.75rem;margin-bottom:.5rem;cursor:pointer;transition:all .2s}.resource-item:hover{background-color:#333;border-color:#646cff}.resource-item.selected{border-color:#646cff;border-width:2px;background-color:#333}.resource-header{margin-bottom:.5rem}.resource-filename{color:#fff;font-size:.9rem;font-weight:500;display:block;word-break:break-word}.resource-metadata{display:flex;gap:1rem;font-size:.8rem;color:#888;flex-wrap:wrap}.resource-page,.resource-date,.resource-score{display:inline-block}.loading-dots{display:flex;gap:.3rem;align-items:center;padding:.2rem 0}.loading-dots span{width:6px;height:6px;background-color:currentColor;border-radius:50%;animation:loading-bounce 1.4s infinite ease-in-out both}.loading-dots span:nth-child(1){animation-delay:-.32s}.loading-dots span:nth-child(2){animation-delay:-.16s}@keyframes loading-bounce{0%,80%,to{transform:scale(.8);opacity:.5}40%{transform:scale(1);opacity:1}}.chat-interface{flex:1;display:flex;flex-direction:column;overflow:hidden;position:relative}.chat-messages{flex:1;overflow-y:auto;padding:1rem 2rem;padding-bottom:0;display:flex;flex-direction:column}.chat-messages-content{display:flex;flex-direction:column}.scroll-to-bottom-button{position:absolute;bottom:calc(1rem + 108px);left:50%;transform:translate(-50%);width:32px;height:32px;border-radius:50%;background-color:#fff;border:1px solid #e0e0e0;color:#666;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px #0000004d;transition:background-color .2s,transform .2s,opacity .2s ease,visibility .3s ease;z-index:10;opacity:1;visibility:visible}@keyframes slideIn{0%{opacity:0;transform:translate(-50%) translateY(10px)}to{opacity:1;visibility:visible;transform:translate(-50%) translateY(0)}}.scroll-to-bottom-button svg{width:18px;height:18px}.scroll-to-bottom-button:hover{background-color:#f5f5f5;border-color:#d0d0d0;transform:translate(-50%) scale(1.1)}.scroll-to-bottom-button:active{background-color:#e8e8e8;transform:translate(-50%) scale(.95)}.chat-input-form{padding:1rem 2rem;background-color:#242424;border-top:1px solid #333;display:flex;gap:1rem;align-items:flex-end}.chat-input{flex:1;background-color:#2a2a2a;border:1px solid #333;border-radius:8px;padding:.75rem;color:#fff;font-size:1rem;font-family:inherit;resize:none;transition:border-color .2s}.chat-input:focus{outline:none;border-color:#646cff}.chat-input::placeholder{color:#666}.send-button{background-color:#646cff;color:#fff;border:none;border-radius:8px;padding:.75rem 1.5rem;font-size:1rem;font-weight:500;cursor:pointer;transition:background-color .2s}.send-button:hover:not(:disabled){background-color:#535bf2}.send-button:active:not(:disabled){background-color:#4249d8}.send-button:disabled{background-color:#4a4a4a;cursor:not-allowed;opacity:.6}.chat-input:disabled{opacity:.6;cursor:not-allowed}.login-container{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:100vh;background-color:#f5f5f5}.login-card{background-color:#fff;padding:2.5rem;border-radius:12px;box-shadow:0 2px 10px #0000001a;text-align:center;max-width:400px;width:90%}.login-icon{width:80px;height:80px;margin:0 auto 1.5rem;color:#646cff}.login-icon svg{width:100%;height:100%}.login-title{margin-bottom:1rem;color:#333;font-size:2rem;font-weight:600}.login-subtitle{margin-bottom:2rem;color:#666;font-size:.95rem;line-height:1.5}.login-button{background-color:#646cff;color:#fff;border:none;border-radius:8px;padding:.75rem 1.5rem;font-size:1rem;font-weight:500;cursor:pointer;transition:background-color .2s;width:100%}.login-button:hover{background-color:#535bf2}.login-button:active{background-color:#4249d8}.chat-bubble{display:flex;margin-bottom:1rem}.chat-bubble.user{justify-content:flex-end}.chat-bubble.agent{justify-content:flex-start}.bubble-content{max-width:70%;padding:.75rem 1rem;border-radius:12px;position:relative}.chat-bubble.user .bubble-content{background-color:#646cff;color:#fff;border-bottom-right-radius:4px}.chat-bubble.agent .bubble-content{background-color:#2a2a2a;color:#fff;border:1px solid #333;border-bottom-left-radius:4px}.bubble-content p{margin:0;white-space:pre-wrap;word-wrap:break-word;line-height:1.5}.bubble-content h1,.bubble-content h2,.bubble-content h3,.bubble-content h4,.bubble-content h5,.bubble-content h6{margin:.5em 0 .3em;font-weight:600;line-height:1.3}.bubble-content h1{font-size:1.5em}.bubble-content h2{font-size:1.3em}.bubble-content h3{font-size:1.1em}.bubble-content ul,.bubble-content ol{margin:.5em 0;padding-left:1.5em}.bubble-content li{margin:.25em 0}.bubble-content code{background-color:#0003;padding:.1em .3em;border-radius:3px;font-family:Courier New,Courier,monospace;font-size:.9em}.bubble-content pre{background-color:#0000004d;padding:.75em;border-radius:6px;overflow-x:auto;margin:.5em 0}.bubble-content pre code{background-color:transparent;padding:0}.bubble-content blockquote{border-left:3px solid #646cff;padding-left:1em;margin:.5em 0;opacity:.9}.bubble-content a{color:#646cff;text-decoration:underline}.bubble-content a:hover{opacity:.8}.bubble-content strong{font-weight:600}.bubble-content em{font-style:italic}.bubble-content hr{border:none;border-top:1px solid rgba(255,255,255,.2);margin:.75em 0}.bubble-content p:first-child{margin-top:0}.bubble-content p:last-child{margin-bottom:0}.chat-error{color:#ff6b6b;background-color:#ff6b6b1a;border:1px solid rgba(255,107,107,.3);border-radius:6px;padding:.5rem;margin-top:.5rem;font-weight:500}.bubble-content>*:first-child{margin-top:0}.bubble-content>*:last-child{margin-bottom:0}.timestamp{display:block;font-size:.75rem;opacity:.7;margin-top:.25rem}.citation{display:inline-block;background-color:#1a1919;color:#e0e0e0;padding:.15rem .5rem;border-radius:12px;font-size:.65rem;margin:0 .1rem;cursor:pointer;transition:background-color .3s ease,color .3s ease;vertical-align:middle;white-space:nowrap;max-width:130px;overflow:hidden;text-overflow:ellipsis;font-weight:500}.citation:hover:not(.disabled){background-color:#646cff;color:#fff}.citation.disabled{cursor:default;opacity:.7}.pdf-viewer{position:relative;height:100%;background-color:#242424;border-left:1px solid #333;display:flex;flex-direction:column;flex-shrink:0}.pdf-viewer-resize-handle{position:absolute;left:0;top:0;bottom:0;width:4px;cursor:ew-resize;background-color:transparent;transition:background-color .2s}.pdf-viewer-resize-handle:hover{background-color:#646cff}.pdf-viewer-header{padding:1rem;border-bottom:1px solid #333;display:flex;justify-content:space-between;align-items:center}.pdf-viewer-header h3{margin:0;font-size:1rem;color:#fff}.pdf-viewer-close{background:none;border:none;color:#fff;font-size:2rem;cursor:pointer;padding:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:background-color .2s}.pdf-viewer-close:hover{background-color:#333}.pdf-viewer-controls{padding:.75rem 1rem;border-bottom:1px solid #333;display:flex;justify-content:space-between;align-items:center;gap:1rem}.pdf-viewer-controls button{background-color:#2a2a2a;color:#fff;border:1px solid #333;padding:.5rem 1rem;border-radius:6px;cursor:pointer;transition:background-color .2s,border-color .2s}.pdf-viewer-controls button:hover:not(:disabled){background-color:#333;border-color:#646cff}.pdf-viewer-controls button:disabled{opacity:.5;cursor:not-allowed}.pdf-viewer-controls span{color:#e0e0e0;font-size:.9rem;flex:1;text-align:center}.pdf-viewer-controls .pdf-viewer-close{background-color:#2a2a2a;border:1px solid #333;color:#fff;font-size:1.5rem;cursor:pointer;padding:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:background-color .2s,border-color .2s}.pdf-viewer-controls .pdf-viewer-close:hover{background-color:#333;border-color:#646cff}.pdf-viewer-content{flex:1;overflow-y:auto;padding:1rem;background-color:#1a1a1a}.pdf-loading,.pdf-error{text-align:center;padding:2rem;color:#888}.pdf-error{color:#ff6b6b}.pdf-viewer-content mark{background-color:#646cff;color:#fff;padding:2px 0}.pdf-no-match-banner{background-color:#2a2a2a;border-top:2px solid #ff6b6b;padding:1rem;color:#fff;margin-top:auto}.pdf-no-match-header{font-weight:600;margin-bottom:.5rem;color:#ff6b6b}.pdf-no-match-quote{font-size:.85rem;color:#ddd;margin-bottom:.5rem;font-style:italic;max-height:3rem;overflow-y:auto;padding:.25rem;background-color:#1a1a1a;border-radius:4px}.pdf-no-match-hint{font-size:.75rem;color:#888}.chat-messages::-webkit-scrollbar,.resource-list::-webkit-scrollbar{width:8px}.chat-messages::-webkit-scrollbar-track,.resource-list::-webkit-scrollbar-track{background:#1a1a1a}.chat-messages::-webkit-scrollbar-thumb,.resource-list::-webkit-scrollbar-thumb{background:#333;border-radius:4px}.chat-messages::-webkit-scrollbar-thumb:hover,.resource-list::-webkit-scrollbar-thumb:hover{background:#444}@media(prefers-color-scheme:light){:root{color:#213547;background-color:#fff}.app-container{background-color:#f5f5f5}.app-header{background-color:#fff;border-bottom-color:#e0e0e0}.app-header h1{color:#213547}.burger-menu{background:#f9f9f9;border-color:#e0e0e0}.burger-menu:hover{background:#f0f0f0;border-color:#646cff}.burger-menu span{background-color:#213547}.resource-panel{background-color:#fff;border-right-color:#e0e0e0}.resource-panel-header{border-bottom-color:#e0e0e0}.references-icon,.resource-panel-header h3{color:#213547}.resource-item{background-color:#f9f9f9;border-color:#e0e0e0}.resource-item:hover{background-color:#f0f0f0}.resource-item.selected{border-color:#646cff;border-width:2px;background-color:#f0f0f0}.resource-filename{color:#213547}.chat-input-form{background-color:#fff;border-top-color:#e0e0e0}.chat-input{background-color:#f9f9f9;border-color:#e0e0e0;color:#213547}.chat-bubble.agent .bubble-content{background-color:#f0f0f0;border-color:#e0e0e0;color:#213547}.chat-messages::-webkit-scrollbar-track,.resource-list::-webkit-scrollbar-track{background:#f5f5f5}.chat-messages::-webkit-scrollbar-thumb,.resource-list::-webkit-scrollbar-thumb{background:#d0d0d0}.citation{background-color:#e0e0e0;color:#4a4a4a}.citation:hover:not(.disabled){background-color:#646cff;color:#fff}.citation.disabled{cursor:default;opacity:.7}.pdf-viewer{background-color:#fff;border-left-color:#e0e0e0}.pdf-viewer-header{border-bottom-color:#e0e0e0}.pdf-viewer-header h3,.pdf-viewer-close{color:#213547}.pdf-viewer-close:hover{background-color:#f0f0f0}.pdf-viewer-controls{border-bottom-color:#e0e0e0}.pdf-viewer-controls button{background-color:#f9f9f9;color:#213547;border-color:#e0e0e0}.pdf-viewer-controls button:hover:not(:disabled){background-color:#f0f0f0}.pdf-viewer-controls .pdf-viewer-close{background-color:#f9f9f9;border-color:#e0e0e0;color:#213547}.pdf-viewer-controls .pdf-viewer-close:hover{background-color:#f0f0f0;border-color:#646cff}.pdf-viewer-controls span{color:#213547}.pdf-viewer-content{background-color:#f5f5f5}.pdf-no-match-banner{background-color:#fff;border-top-color:#ff6b6b}.pdf-no-match-header{color:#ff6b6b}.pdf-no-match-quote{color:#333;background-color:#f5f5f5}.pdf-no-match-hint{color:#666}}.sign-out-button{margin-left:auto;padding:.5rem 1rem;background-color:transparent;color:#e87d88;border:2px solid #e87d88;border-radius:4px;cursor:pointer;font-weight:600;transition:background-color .2s ease,color .2s ease,border-color .2s ease}.sign-out-button:hover{background-color:#dc3545;color:#fff;border-color:#dc3545}:root{--react-pdf-annotation-layer: 1;--annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");--input-focus-border-color: Highlight;--input-focus-outline: 1px solid Canvas;--input-unfocused-border-color: transparent;--input-disabled-border-color: transparent;--input-hover-border-color: black;--link-outline: none}@media screen and (forced-colors:active){:root{--input-focus-border-color: CanvasText;--input-unfocused-border-color: ActiveText;--input-disabled-border-color: GrayText;--input-hover-border-color: Highlight;--link-outline: 1.5px solid LinkText}.annotationLayer .textWidgetAnnotation :is(input,textarea):required,.annotationLayer .choiceWidgetAnnotation select:required,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input:required{outline:1.5px solid selectedItem}.annotationLayer .linkAnnotation:hover{-webkit-backdrop-filter:invert(100%);backdrop-filter:invert(100%)}}.annotationLayer{position:absolute;top:0;left:0;pointer-events:none;transform-origin:0 0;z-index:3}.annotationLayer[data-main-rotation="90"] .norotate{transform:rotate(270deg) translate(-100%)}.annotationLayer[data-main-rotation="180"] .norotate{transform:rotate(180deg) translate(-100%,-100%)}.annotationLayer[data-main-rotation="270"] .norotate{transform:rotate(90deg) translateY(-100%)}.annotationLayer canvas{position:absolute;width:100%;height:100%}.annotationLayer section{position:absolute;text-align:initial;pointer-events:auto;box-sizing:border-box;margin:0;transform-origin:0 0}.annotationLayer .linkAnnotation{outline:var(--link-outline)}.textLayer.selecting~.annotationLayer section{pointer-events:none}.annotationLayer :is(.linkAnnotation,.buttonWidgetAnnotation.pushButton)>a{position:absolute;font-size:1em;top:0;left:0;width:100%;height:100%}.annotationLayer :is(.linkAnnotation,.buttonWidgetAnnotation.pushButton)>a:hover{opacity:.2;background:#ff0;box-shadow:0 2px 10px #ff0}.annotationLayer .textAnnotation img{position:absolute;cursor:pointer;width:100%;height:100%;top:0;left:0}.annotationLayer .textWidgetAnnotation :is(input,textarea),.annotationLayer .choiceWidgetAnnotation select,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input{background-image:var(--annotation-unfocused-field-background);border:2px solid var(--input-unfocused-border-color);box-sizing:border-box;font:calc(9px * var(--total-scale-factor)) sans-serif;height:100%;margin:0;vertical-align:top;width:100%}.annotationLayer .textWidgetAnnotation :is(input,textarea):required,.annotationLayer .choiceWidgetAnnotation select:required,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input:required{outline:1.5px solid red}.annotationLayer .choiceWidgetAnnotation select option{padding:0}.annotationLayer .buttonWidgetAnnotation.radioButton input{border-radius:50%}.annotationLayer .textWidgetAnnotation textarea{resize:none}.annotationLayer .textWidgetAnnotation :is(input,textarea)[disabled],.annotationLayer .choiceWidgetAnnotation select[disabled],.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input[disabled]{background:none;border:2px solid var(--input-disabled-border-color);cursor:not-allowed}.annotationLayer .textWidgetAnnotation :is(input,textarea):hover,.annotationLayer .choiceWidgetAnnotation select:hover,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input:hover{border:2px solid var(--input-hover-border-color)}.annotationLayer .textWidgetAnnotation :is(input,textarea):hover,.annotationLayer .choiceWidgetAnnotation select:hover,.annotationLayer .buttonWidgetAnnotation.checkBox input:hover{border-radius:2px}.annotationLayer .textWidgetAnnotation :is(input,textarea):focus,.annotationLayer .choiceWidgetAnnotation select:focus{background:none;border:2px solid var(--input-focus-border-color);border-radius:2px;outline:var(--input-focus-outline)}.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) :focus{background-image:none;background-color:transparent}.annotationLayer .buttonWidgetAnnotation.checkBox :focus{border:2px solid var(--input-focus-border-color);border-radius:2px;outline:var(--input-focus-outline)}.annotationLayer .buttonWidgetAnnotation.radioButton :focus{border:2px solid var(--input-focus-border-color);outline:var(--input-focus-outline)}.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after,.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before{background-color:CanvasText;content:"";display:block;position:absolute}.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after{height:80%;left:45%;width:1px}.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before{transform:rotate(45deg)}.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after{transform:rotate(-45deg)}.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before{border-radius:50%;height:50%;left:30%;top:20%;width:50%}.annotationLayer .textWidgetAnnotation input.comb{font-family:monospace;padding-left:2px;padding-right:0}.annotationLayer .textWidgetAnnotation input.comb:focus{width:103%}.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input{appearance:none}.annotationLayer .popupTriggerArea{height:100%;width:100%}.annotationLayer .fileAttachmentAnnotation .popupTriggerArea{position:absolute}.annotationLayer .popupWrapper{position:absolute;font-size:calc(9px * var(--total-scale-factor));width:100%;min-width:calc(180px * var(--total-scale-factor));pointer-events:none}.annotationLayer .popup{position:absolute;max-width:calc(180px * var(--total-scale-factor));background-color:#ff9;box-shadow:0 calc(2px * var(--total-scale-factor)) calc(5px * var(--total-scale-factor)) #888;border-radius:calc(2px * var(--total-scale-factor));padding:calc(6px * var(--total-scale-factor));margin-left:calc(5px * var(--total-scale-factor));cursor:pointer;font:message-box;white-space:normal;word-wrap:break-word;pointer-events:auto}.annotationLayer .popup>*{font-size:calc(9px * var(--total-scale-factor))}.annotationLayer .popup h1{display:inline-block}.annotationLayer .popupDate{display:inline-block;margin-left:calc(5px * var(--total-scale-factor))}.annotationLayer .popupContent{border-top:1px solid rgba(51,51,51,1);margin-top:calc(2px * var(--total-scale-factor));padding-top:calc(2px * var(--total-scale-factor))}.annotationLayer .richText>*{white-space:pre-wrap;font-size:calc(9px * var(--total-scale-factor))}.annotationLayer .highlightAnnotation,.annotationLayer .underlineAnnotation,.annotationLayer .squigglyAnnotation,.annotationLayer .strikeoutAnnotation,.annotationLayer .freeTextAnnotation,.annotationLayer .lineAnnotation svg line,.annotationLayer .squareAnnotation svg rect,.annotationLayer .circleAnnotation svg ellipse,.annotationLayer .polylineAnnotation svg polyline,.annotationLayer .polygonAnnotation svg polygon,.annotationLayer .caretAnnotation,.annotationLayer .inkAnnotation svg polyline,.annotationLayer .stampAnnotation,.annotationLayer .fileAttachmentAnnotation{cursor:pointer}.annotationLayer section svg{position:absolute;width:100%;height:100%;top:0;left:0}.annotationLayer .annotationTextContent{position:absolute;width:100%;height:100%;opacity:0;color:transparent;-webkit-user-select:none;user-select:none;pointer-events:none}.annotationLayer .annotationTextContent span{width:100%;display:inline-block}:root{--react-pdf-text-layer: 1;--highlight-bg-color: rgba(180, 0, 170, 1);--highlight-selected-bg-color: rgba(0, 100, 0, 1)}@media screen and (forced-colors:active){:root{--highlight-bg-color: Highlight;--highlight-selected-bg-color: ButtonText}}[data-main-rotation="90"]{transform:rotate(90deg) translateY(-100%)}[data-main-rotation="180"]{transform:rotate(180deg) translate(-100%,-100%)}[data-main-rotation="270"]{transform:rotate(270deg) translate(-100%)}.textLayer{position:absolute;text-align:initial;inset:0;overflow:hidden;line-height:1;text-size-adjust:none;forced-color-adjust:none;transform-origin:0 0;z-index:2}.textLayer :is(span,br){color:transparent;position:absolute;white-space:pre;cursor:text;margin:0;transform-origin:0 0}.textLayer span.markedContent{top:0;height:0}.textLayer .highlight{margin:-1px;padding:1px;background-color:var(--highlight-bg-color);border-radius:4px}.textLayer .highlight.appended{position:initial}.textLayer .highlight.begin{border-radius:4px 0 0 4px}.textLayer .highlight.end{border-radius:0 4px 4px 0}.textLayer .highlight.middle{border-radius:0}.textLayer .highlight.selected{background-color:var(--highlight-selected-bg-color)}.textLayer br::selection{background:transparent}.textLayer .endOfContent{display:block;position:absolute;inset:100% 0 0;z-index:-1;cursor:default;-webkit-user-select:none;user-select:none}.textLayer.selecting .endOfContent{top:0}.hiddenCanvasElement{position:absolute;top:0;left:0;width:0;height:0;display:none}
