.pdf-viewer-container-54c5e23e {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    background: transparent;
    border-radius: 8px;
    box-shadow: none;
    padding: 24px 0;
}

.pdf-canvas-wrapper {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 16px;
}

.pdf-render-canvas {
    max-width: 100%;
    height: auto !important;
    background: transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 4px;
}

.pdf-navigation {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.pdf-nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pdf-nav-btn:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.pdf-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pdf-page-indicator {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.pdf-info-sidebar {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pdf-info-title {
    margin: 0 0 12px 0;
    font-size: 24px;
    color: #ffffff;
}

.pdf-info-desc {
    margin: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.pdf-btn-download {
    display: inline-block;
    background-color: #896090;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.pdf-btn-download:hover {
    filter: brightness(1.1);
}

.pdf-viewer-empty {
    padding: 20px;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
}
