.pdf-viewer-main-container-8a15f74b {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pdf-viewer-wrapper-8a15f74b {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pdf-viewer-canvas-container {
    width: 100%;
    position: relative;
    overflow: auto;
    border-width: 1px;
    border-color: #ddd;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.pdf-render-target {
    display: block;
    max-width: 100%;
    height: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #fff;
}

.pdf-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    z-index: 10;
}

.pdf-viewer-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
}

.pdf-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s ease;
}

.pdf-btn:hover:not(:disabled) {
    background: #f0f0f0;
    border-color: #ccc;
}

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

.pdf-page-info {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.pdf-viewer-btn-wrapper {
    width: 100%;
    margin-top: 5px;
}

.pdf-viewer-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.pdf-viewer-btn:hover {
    opacity: 0.9;
    color: #fff;
}

.pdf-viewer-placeholder {
    padding: 30px;
    text-align: center;
    background: #f9f9f9;
    border: 2px dashed #ddd;
    color: #666;
}
