.super-copy-button-wrapper {
    width: 100%;
}

.super-copy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    background-color: #61CE70;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    min-height: 48px;
    width: auto;
}

.super-copy-button--stretch {
    width: 100%;
}

.super-copy-button .button-inner {
    display: flex;
    align-items: center;
    justify-content: inherit;
    gap: 8px;
    width: 100%;
    height: 100%;
}

.super-copy-button i,
.super-copy-button svg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.super-copy-button .button-text {
    flex-grow: 1;
    text-align: center;
}

.super-copy-button:hover {
    background-color: #179128;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.super-copy-button.success {
    background-color: #17511F;
}

@media (max-width: 768px) {
    .super-copy-button {
        padding: 10px 20px;
        min-height: 44px;
    }
}