/* Окно просмотра документа (изображение или PDF показываются прямо на странице) */
.document_viewer_modal .modal-content{
    overflow: hidden;
}

.document_viewer_modal .modal-title{
    font-size: 16px;
    word-break: break-word;
    padding-right: 10px;
}

.document_viewer_modal .document_viewer_body{
    padding: 0;
    background: #2b2b2b;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    max-height: 85vh;
    overflow: auto;
}

.document_viewer_modal .document_viewer_image{
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.document_viewer_modal .document_viewer_frame{
    width: 100%;
    height: 85vh;
    border: none;
    background: #fff;
}

/* Заглушка для типов файлов, которые нельзя показать прямо в браузере */
.document_viewer_modal .document_viewer_fallback{
    background: #fff;
    color: #181717;
    text-align: center;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.document_viewer_modal .document_viewer_open_link{
    display: inline-block;
    padding: 10px 18px;
    background-color: #ED8C33;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
}

.document_viewer_modal .document_viewer_open_link:hover{
    background-color: #e17b10;
}
