/* Match PDF.js toolbar style */
.toolbarButtonContainer {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* Custom buttons */
#downloadPage,
#copyPage {
    background: #f0f0f0;
    border: 1px solid #ccc;
    color: #333;
    padding: 4px 8px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 3px;
}

/* Hover effect */
#downloadPage:hover,
#copyPage:hover {
    background: #e0e0e0;
}

/* Optional: make icons nicer */
#downloadPage::before {
    content: "⬇ ";
}

#copyPage::before {
    content: "📋 ";
}

