/**
 * Copy Link Module Styles
 *
 * @package FlatsomeChild\Modules\CopyLink
 */

/* Copy Link Button Hover Effects */
.copy-link-btn:hover {
    color: var(--primary-color) !important;
}

.copy-link-btn:hover svg path {
    fill: var(--primary-color) !important;
}

.copy-link-btn:hover span {
    color: var(--primary-color) !important;
}

/* Ensure smooth transition */
.copy-link-btn {
    transition: color 0.3s ease;
}

.copy-link-btn svg {
    transition: fill 0.3s ease;
}

.copy-link-btn svg path {
    transition: fill 0.3s ease;
}

.copy-link-btn span {
    transition: color 0.3s ease;
}
