/* puildopy-copy-paste/assets/css/puildopy-style.css */
/* Basic styling for the copy button widget */
.puildopy-copy-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #6d28d9; /* A distinct color */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 600;
}

.puildopy-copy-button:hover {
    background-color: #4c1d95; /* Darker shade on hover */
    color: #ffffff;
    text-decoration: none;
}