.clipboard-popup {
    position: absolute; /* Changed from fixed to absolute for relative positioning */
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.clipboard-popup button {
    margin-top: 10px;
}
/* clipboard-parser-plugin.css */
.custom-clipboard-button {
    background-color: #4CAF50; /* Green background */
    border: none; /* Remove border */
    color: white; /* White text */
    padding: 15px 32px; /* Padding */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Inline-block element */
    font-size: 16px; /* Font size */
    margin: 4px 2px; /* Margin */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 8px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.custom-clipboard-button:hover {
    background-color: #45a049; /* Darker green on hover */
}
