.lmfwc-myaccount-license-key {
    position: relative;
    padding-right: 70px;
}

.lmfwc-myaccount-license-key::after {
    content: "Copiar";
    margin-left: 5%;
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lmfwc-myaccount-license-key:hover::after {
    background-color: #218838;
}

.lmfwc-myaccount-license-key:active::after {
    background-color: #1e7e34;
}

.copiar-licencia-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    display: none;
    transition: opacity 0.3s ease;
}