/* CEDOC Public Styles */

:root {
    --cedoc-primary: #0073aa;
    --cedoc-secondary: #23282d;
    --cedoc-text: #333333;
    --cedoc-background: #ffffff;
    --cedoc-button-text: #ffffff;
    --cedoc-border: #e5e5e5;
    --cedoc-hover: #f5f5f5;
}



/* Filtro Global */
.cedoc-global-filter {
    margin-bottom: 30px;
}

.cedoc-search-box {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    border: 2px solid var(--cedoc-border);
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cedoc-search-box:focus {
    outline: none;
    border-color: var(--cedoc-primary);
    box-shadow: 0 0 0 3px rgba(0,115,170,0.1);
}

/* Tabla */
.cedoc-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cedoc-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.cedoc-table th {
    background: var(--cedoc-primary);
    color: var(--cedoc-button-text);
    padding: 15px;
    text-align: left;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
}

.cedoc-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--cedoc-border);
    font-size: 14px;
}

.cedoc-table tbody tr:hover {
    background: var(--cedoc-hover);
}

/* Botones de Archivo */
.cedoc-file-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cedoc-btn-primary {
    background: var(--cedoc-primary);
    color: var(--cedoc-button-text);
    border: 2px solid var(--cedoc-primary);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cedoc-btn-primary:hover {
    background: var(--cedoc-secondary);
    border-color: var(--cedoc-secondary);
    color: var(--cedoc-button-text);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Paginación */
.cedoc-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cedoc-page-btn {
    padding: 8px 14px;
    border: 2px solid var(--cedoc-border);
    background: #fff;
    color: var(--cedoc-text);
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 40px;
}

.cedoc-page-btn:hover {
    background: var(--cedoc-hover);
    border-color: var(--cedoc-primary);
}

.cedoc-page-btn.active {
    background: var(--cedoc-primary);
    color: var(--cedoc-button-text);
    border-color: var(--cedoc-primary);
}

.cedoc-page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Modal */
.cedoc-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.cedoc-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cedoc-modal-header {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--cedoc-border);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cedoc-modal-header h2 {
    margin: 0;
    font-size: 22px;
    color: var(--cedoc-text);
}

.cedoc-modal-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.cedoc-modal-close:hover {
    color: var(--cedoc-primary);
}

/* Visor de Archivos */
.cedoc-file-viewer {
    width: 100%;
    min-height: 500px;
    border: none;
}

.cedoc-file-viewer iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 4px;
}

.cedoc-file-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.cedoc-file-info {
    background: var(--cedoc-hover);
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cedoc-file-details {
    color: var(--cedoc-text);
}

.cedoc-file-name {
    font-size: 0.9rem;
    word-break: break-all;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.cedoc-file-meta {
    font-size: 13px;
    color: #666;
}

/* Estados */
.cedoc-loading {
    text-align: center;
    padding: 50px;
    color: #666;
}

.cedoc-error {
    color: #dc3232;
    padding: 20px;
    text-align: center;
    background: #fef1f1;
    border-radius: 4px;
    margin: 20px 0;
}

.cedoc-no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .cedoc-table th,
    .cedoc-table td {
        padding: 10px;
        font-size: 13px;
    }

    .cedoc-file-actions {
        flex-direction: column;
    }

    .cedoc-btn-primary {
        text-align: center;
    }

    .cedoc-modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 15px;
    }

    .cedoc-file-viewer iframe {
        height: 400px;
    }
}

/* Estilos para el widget */
.cedoc-widget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.cedoc-widget-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cedoc-widget-card:hover {
    transform: translateY(-3px) !important;
     box-shadow: 0 2px 4px rgba(53, 93, 154, 0.15) !important; /* Sombra con un toque del azul */
    border-color: #355d9a !important; /* El borde cambia a tu azul */
    background: #f8fafc !important; /* El borde cambia a tu azul */
}

 .hover-card:hover .cedoc-card-titulo {
    color: #355d9a; /* El título cambia a tu azul */
    text-decoration: none !important;
  }

.cedoc-card-tipo {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cedoc-card-titulo {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.cedoc-card-descripcion {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    flex-grow: 1;
}

.cedoc-card-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cedoc-card-fecha {
    font-size: 11px;
    color: #999;
}

.cedoc-card-ver {
    font-size: 13px;
    font-weight: 500;
}

.cedoc-widget-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.cedoc-widget-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.cedoc-widget-ver-todas {
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.cedoc-widget-ver-todas:hover {
    text-decoration: underline;
}

.cedoc-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .cedoc-widget-grid {
        grid-template-columns: 1fr;
    }
    
    .cedoc-widget-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cedoc-filtros-todos {
        flex-direction: column;
    }
    
    .cedoc-filtros-todos select,
    .cedoc-filtros-todos input {
        width: 100%;
    }
}

/* Estilos responsivos para el widget */
@media (max-width: 768px) {
    .cedoc-widget-grid {
        grid-template-columns: 1fr !important;
    }
    
    .cedoc-widget-header {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .cedoc-widget-card {
        margin-bottom: 15px;
    }
}

/* Animación suave para los cards */
.cedoc-widget-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CEDOC Public Styles - Versión con fuentes del tema */

/* El contenedor principal hereda las fuentes del tema */
.cedoc-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: var(--cedoc-background, #ffffff);
    color: var(--cedoc-text, #333333);
    font-family: inherit;
}

/* Títulos usan las fuentes de headings del tema */
.cedoc-container h1,
.cedoc-container h2,
.cedoc-container h3,
.cedoc-container h4,
.cedoc-container h5,
.cedoc-container h6 {
    font-family: var(--wp--preset--font-family--heading, inherit);
}

/* Filtro Global */
.cedoc-global-filter {
    margin-bottom: 30px;
}

.cedoc-search-box {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    border: 2px solid var(--cedoc-border, #e5e5e5);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cedoc-search-box:focus {
    outline: none;
    border-color: var(--cedoc-primary, #0073aa);
    box-shadow: 0 0 0 3px rgba(0,115,170,0.1);
}

/* Tabla */
.cedoc-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cedoc-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-family: inherit;
}

.cedoc-table th {
    background: var(--cedoc-primary, #0073aa);
    color: var(--cedoc-button-text, #ffffff);
    padding: 15px;
    text-align: left;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    font-family: var(--wp--preset--font-family--heading, inherit);
}

.cedoc-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--cedoc-border, #e5e5e5);
    font-size: 14px;
    font-family: inherit;
}

.cedoc-table tbody tr:hover {
    background: var(--cedoc-hover, #f5f5f5);
}

/* Badge de tipo */
.cedoc-tipo-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--cedoc-primary, #0073aa)20;
    color: var(--cedoc-primary, #0073aa);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: inherit;
}

/* Botones de Archivo */
.cedoc-file-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cedoc-btn-primary {
    background: var(--cedoc-primary, #0073aa);
    color: var(--cedoc-button-text, #ffffff);
    border: 2px solid var(--cedoc-primary, #0073aa);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.cedoc-btn-primary:hover {
    background: var(--cedoc-secondary, #23282d);
    border-color: var(--cedoc-secondary, #23282d);
    color: var(--cedoc-button-text, #ffffff);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Paginación */
.cedoc-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cedoc-page-btn {
    padding: 8px 14px;
    border: 2px solid var(--cedoc-border, #e5e5e5);
    background: #fff;
    color: var(--cedoc-text, #333333);
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    min-width: 40px;
}

.cedoc-page-btn:hover {
    background: var(--cedoc-hover, #f5f5f5);
    border-color: var(--cedoc-primary, #0073aa);
}

.cedoc-page-btn.active {
    background: var(--cedoc-primary, #0073aa);
    color: var(--cedoc-button-text, #ffffff);
    border-color: var(--cedoc-primary, #0073aa);
}

/* Modal */
.cedoc-modal {
    font-family: inherit;
}

.cedoc-modal-header h2 {
    font-family: var(--wp--preset--font-family--heading, inherit);
}

/* Visor de Archivos */
.cedoc-file-viewer iframe {
    font-family: inherit;
}

/* Responsive */
@media (max-width: 768px) {
    .cedoc-table th,
    .cedoc-table td {
        padding: 10px;
        font-size: 13px;
    }

    .cedoc-file-actions {
        flex-direction: column;
    }

    .cedoc-btn-primary {
        text-align: center;
    }
}

/* Modal fullscreen */
.cedoc-modal-fullscreen {
  
   
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

.cedoc-modal-fullscreen .cedoc-modal-header {
    padding: 15px 25px;
    background: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cedoc-modal-fullscreen .cedoc-modal-header h2 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--cedoc-text, #333);
}

.cedoc-modal-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cedoc-modal-close-btn:hover {
    background: rgba(0,0,0,0.05);
}

.cedoc-modal-close-btn .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #666;
}

.cedoc-modal-fullscreen .cedoc-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0px;
    background: #f5f5f5;
}

/* Visores de archivo fullscreen */
.cedoc-file-viewer-container {
    width: 100%;
    height: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.cedoc-file-image-full {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cedoc-file-viewer-full {
    width: 100%;
    height: 70vh;
    border: none;
    background: white;
}

.cedoc-file-video-full {
    max-width: 100%;
    max-height: 70vh;
    background: black;
}

/* Info para archivos no previsualizables */
.cedoc-file-info-container {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cedoc-file-icon-large .dashicons {
    font-size: 64px;
    width: 64px;
    height: 64px;
    color: var(--cedoc-primary, #0073aa);
    margin-bottom: 20px;
}

.cedoc-file-name-large {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--cedoc-text, #333);
    word-break: break-word;
}

.cedoc-file-meta-large {
    color: #666;
    margin-bottom: 25px;
}

.cedoc-btn-large {
    padding: 12px 30px;
    font-size: 1rem;
}

/* Barra de descarga para archivos previsualizables */
.cedoc-modal-download-bar {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eaeaea;
}

/* Responsive */
@media (max-width: 768px) {
    .cedoc-modal-fullscreen {
        width: 100% !important;
        height: 100vh !important;
        margin: 0 !important;
        border-radius: 0;
    }
    
    .cedoc-file-viewer-full {
        height: 60vh;
    }
    
    .cedoc-file-image-full {
        max-height: 60vh;
    }
}

/* Modal Fullscreen */
.cedoc-modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.cedoc-modal-fullscreen-content {
    position: relative;
    width: 95%;
    height: 90%;
    max-width: 1400px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cedoc-modal-fullscreen-header {
    padding: 20px 25px;
    background: white;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cedoc-modal-fullscreen-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.cedoc-modal-close-fullscreen {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cedoc-modal-close-fullscreen:hover {
    background: rgba(0, 0, 0, 0.05);
}

.cedoc-modal-fullscreen-body {
    flex: 1;
    overflow-y: auto;
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .cedoc-modal-fullscreen-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .cedoc-modal-fullscreen-header {
        padding: 15px 20px;
    }
}

/* Modal Fullscreen Unificado */
.cedoc-modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.cedoc-modal-fullscreen.active {
    visibility: visible;
    opacity: 1;
}

.cedoc-modal-fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(1px);
}

.cedoc-modal-fullscreen-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    max-height: 85vh;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.cedoc-modal-fullscreen.active .cedoc-modal-fullscreen-container {
    transform: scale(1);
}

.cedoc-modal-fullscreen-header {
    padding: 20px 24px;
    background: white;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cedoc-modal-fullscreen-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    font-family: var(--wp--preset--font-family--heading, inherit);
}

.cedoc-modal-close-fullscreen {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cedoc-modal-close-fullscreen:hover {
    background: rgba(0, 0, 0, 0.05);
}

.cedoc-modal-close-fullscreen .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #666;
}

.cedoc-modal-fullscreen-body {
    flex: 1;
    overflow-y: auto;
    background: #f5f5f5;
    padding: 20px;
}

.cedoc-modal-fullscreen-footer {
    padding: 16px 24px;
    background: white;
    border-top: 1px solid #eaeaea;
    display: flex;
    justify-content: center;
    text-transform:uppercase ;
    gap: 12px;
    flex-shrink: 0;
}

.cedoc-modal-download-btn {
    background: var(--cedoc-primary, #355d9a);
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.cedoc-modal-download-btn:hover {
    opacity: 0.9;
    color: white;
}

.cedoc-viewer-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cedoc-viewer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 60vh;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.cedoc-viewer-image {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 4px;
}

.cedoc-viewer-pdf {
    width: 100%;
    height: 70vh;
    border: none;
    background: white;
    border-radius: 4px;
}

.cedoc-viewer-video {
    max-width: 100%;
    max-height: 65vh;
    background: black;
    border-radius: 4px;
}

.cedoc-viewer-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 8px;
}

.cedoc-viewer-placeholder .dashicons {
    font-size: 64px;
    width: 64px;
    height: 64px;
    color: var(--cedoc-primary, #355d9a);
    margin-bottom: 20px;
}

.cedoc-viewer-placeholder p {
    margin: 10px 0;
    color: #666;
}

.cedoc-file-name {
    font-size: 0.9rem;
    word-break: break-all;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

/* Información del documento en el modal */
.cedoc-document-info {
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
}

.cedoc-document-title {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.cedoc-document-type {
    display: inline-block;
    padding: 4px 12px;
    background: var(--cedoc-primary, #355d9a)20;
    color: var(--cedoc-primary, #355d9a);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.cedoc-document-desc {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cedoc-modal-fullscreen-container {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .cedoc-modal-fullscreen-header {
        padding: 15px 20px;
    }
    
    .cedoc-modal-fullscreen-body {
        padding: 15px;
    }
    
    .cedoc-viewer-pdf {
        height: 60vh;
    }
    
    .cedoc-viewer-image,
    .cedoc-viewer-video {
        max-height: 55vh;
    }
}