/* ============================================
   GWJ PDF VIEWER
   Archivo: display.css
   ============================================ */

body.gwj-body {
    margin: 0;
    background: #2d2d2d; /* mismo tono base que PDF.js */
    font-family: "Segoe UI", Arial, sans-serif;
}

/* HEADER MÁS NEUTRO Y PROFESIONAL */
.gwj-header {
    background: #3a3a3a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid #4a4a4a;
}

.gwj-title {
    font-size: 15px;
    font-weight: 500;
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.9;
}

.gwj-actions {
    display: flex;
    gap: 10px;
}

.gwj-btn {
    background: #4a90e2;
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.2s ease;
}

.gwj-btn:hover {
    background: #357ab8;
}

.gwj-btn-secondary {
    background: #555;
    color: #fff !important;
}

.gwj-btn-secondary:hover {
    background: #666;
}

/* CONTENEDOR PDF */
.gwj-pdf-container {
    height: calc(100vh - 50px);
    width: 100%;
}

.gwj-pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
