
        .easy-copy-text {
            cursor: pointer;
            position: relative;
            padding: 2px 4px;
            border-radius: 3px;
            transition: background-color 0.2s;
        }
        
        .easy-copy-text:hover {
            background-color: #f0f9ff;
        }
        
        .easy-copy-container {
            display: inline-flex;
            align-items: center;
            margin: 0 3px;
        }
        
        .easy-copy-button {
            background: #0085ba;
            color: white;
            border: none;
            border-radius: 3px;
            padding: 2px 8px;
            font-size: 0.8em;
            margin-left: 5px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .easy-copy-button:hover {
            background: #006799;
        }
        
        .easy-copy-feedback {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 10px 15px;
            background: #4CAF50;
            color: white;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: none;
        }
    